]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/ale/doc/ale-objc.txt

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Do not set EDITOR/VISUAL for shell
[etc/vim.git] / .vim / bundle / ale / doc / ale-objc.txt
1 ===============================================================================
2 ALE Objective-C Integration                                  *ale-objc-options*
3
4
5 ===============================================================================
6 ccls                                                            *ale-objc-ccls*
7
8                                              *ale-options.objc_ccls_executable*
9                                                    *g:ale_objc_ccls_executable*
10                                                    *b:ale_objc_ccls_executable*
11 objc_ccls_executable
12 g:ale_objc_ccls_executable
13   Type: |String|
14   Default: `'ccls'`
15
16   This variable can be changed to use a different executable for ccls.
17
18                                            *ale-options.objc_ccls_init_options*
19                                                  *g:ale_objc_ccls_init_options*
20                                                  *b:ale_objc_ccls_init_options*
21 objc_ccls_init_options
22 g:ale_objc_ccls_init_options
23   Type: |Dictionary|
24   Default: `{}`
25
26   This variable can be changed to customize ccls initialization options.
27   Example: >
28
29   let g:ale_objc_ccls_init_options = {
30   \   'cacheDirectory': '/tmp/ccls',
31   \   'cacheFormat': 'binary',
32   \   'diagnostics': {
33   \       'onOpen': 0,
34   \       'opChange': 1000,
35   \   },
36   \}
37 <
38   Visit https://github.com/MaskRay/ccls/wiki/Initialization-options for all
39   available options and explanations.
40
41
42 ===============================================================================
43 clang                                                          *ale-objc-clang*
44
45                                                *ale-options.objc_clang_options*
46                                                      *g:ale_objc_clang_options*
47                                                      *b:ale_objc_clang_options*
48 objc_clang_options
49 g:ale_objc_clang_options
50   Type: |String|
51   Default: `'-std=c11 -Wall'`
52
53   This variable can be changed to modify flags given to clang.
54
55
56 ===============================================================================
57 clang-format                                             *ale-objc-clangformat*
58
59 See |ale-c-clangformat| for information about the available options.
60 Note that the C options are also used for Objective-C.
61
62
63 ===============================================================================
64 clangd                                                        *ale-objc-clangd*
65
66                                            *ale-options.objc_clangd_executable*
67                                                  *g:ale_objc_clangd_executable*
68                                                  *b:ale_objc_clangd_executable*
69 objc_clangd_executable
70 g:ale_objc_clangd_executable
71   Type: |String|
72   Default: `'clangd'`
73
74   This variable can be changed to use a different executable for clangd.
75
76                                               *ale-options.objc_clangd_options*
77                                                     *g:ale_objc_clangd_options*
78                                                     *b:ale_objc_clangd_options*
79 objc_clangd_options
80 g:ale_objc_clangd_options
81   Type: |String|
82   Default: `''`
83
84   This variable can be changed to modify flags given to clangd.
85
86
87 ===============================================================================
88 uncrustify                                                *ale-objc-uncrustify*
89
90 See |ale-c-uncrustify| for information about the available options.
91
92
93 ===============================================================================
94   vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: