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.
1 ===============================================================================
2 ALE Objective-C Integration *ale-objc-options*
5 ===============================================================================
8 *ale-options.objc_ccls_executable*
9 *g:ale_objc_ccls_executable*
10 *b:ale_objc_ccls_executable*
12 g:ale_objc_ccls_executable
16 This variable can be changed to use a different executable for ccls.
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
26 This variable can be changed to customize ccls initialization options.
29 let g:ale_objc_ccls_init_options = {
30 \ 'cacheDirectory': '/tmp/ccls',
31 \ 'cacheFormat': 'binary',
38 Visit https://github.com/MaskRay/ccls/wiki/Initialization-options for all
39 available options and explanations.
42 ===============================================================================
43 clang *ale-objc-clang*
45 *ale-options.objc_clang_options*
46 *g:ale_objc_clang_options*
47 *b:ale_objc_clang_options*
49 g:ale_objc_clang_options
51 Default: `'-std=c11 -Wall'`
53 This variable can be changed to modify flags given to clang.
56 ===============================================================================
57 clang-format *ale-objc-clangformat*
59 See |ale-c-clangformat| for information about the available options.
60 Note that the C options are also used for Objective-C.
63 ===============================================================================
64 clangd *ale-objc-clangd*
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
74 This variable can be changed to use a different executable for clangd.
76 *ale-options.objc_clangd_options*
77 *g:ale_objc_clangd_options*
78 *b:ale_objc_clangd_options*
80 g:ale_objc_clangd_options
84 This variable can be changed to modify flags given to clangd.
87 ===============================================================================
88 uncrustify *ale-objc-uncrustify*
90 See |ale-c-uncrustify| for information about the available options.
93 ===============================================================================
94 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: