diff options
author | Matheus <46067952+Spixmaster@users.noreply.github.com> | 2022-11-25 14:16:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 13:16:16 +0000 |
commit | 5ce2bf84ca00cee8f375f108952789302980ae57 (patch) | |
tree | 2412926618e08f343c0af92cf719bdf1872db7c3 /doc/ale-objc.txt | |
parent | b8de4ac96dcb84ff7ec704a65cdffad97d9bbeb1 (diff) | |
download | ale-5ce2bf84ca00cee8f375f108952789302980ae57.zip |
Added support for more file types for clang-format. (#4367)
Diffstat (limited to 'doc/ale-objc.txt')
-rw-r--r-- | doc/ale-objc.txt | 69 |
1 files changed, 38 insertions, 31 deletions
diff --git a/doc/ale-objc.txt b/doc/ale-objc.txt index 0163175a..e1a0c2a2 100644 --- a/doc/ale-objc.txt +++ b/doc/ale-objc.txt @@ -3,6 +3,37 @@ ALE Objective-C Integration *ale-objc-options* =============================================================================== +ccls *ale-objc-ccls* + +g:ale_objc_ccls_executable *g:ale_objc_ccls_executable* + *b:ale_objc_ccls_executable* + Type: |String| + Default: `'ccls'` + + This variable can be changed to use a different executable for ccls. + + +g:ale_objc_ccls_init_options *g:ale_objc_ccls_init_options* + *b:ale_objc_ccls_init_options* + Type: |Dictionary| + Default: `{}` + + This variable can be changed to customize ccls initialization options. + Example: > + { + \ 'cacheDirectory': '/tmp/ccls', + \ 'cacheFormat': 'binary', + \ 'diagnostics': { + \ 'onOpen': 0, + \ 'opChange': 1000, + \ }, + \ } +< + Visit https://github.com/MaskRay/ccls/wiki/Initialization-options for all + available options and explanations. + + +=============================================================================== clang *ale-objc-clang* g:ale_objc_clang_options *g:ale_objc_clang_options* @@ -14,6 +45,13 @@ g:ale_objc_clang_options *g:ale_objc_clang_options* =============================================================================== +clang-format *ale-objc-clangformat* + +See |ale-c-clangformat| for information about the available options. +Note that the C options are also used for Objective-C. + + +=============================================================================== clangd *ale-objc-clangd* g:ale_objc_clangd_executable *g:ale_objc_clangd_executable* @@ -39,35 +77,4 @@ See |ale-c-uncrustify| for information about the available options. =============================================================================== -ccls *ale-objc-ccls* - -g:ale_objc_ccls_executable *g:ale_objc_ccls_executable* - *b:ale_objc_ccls_executable* - Type: |String| - Default: `'ccls'` - - This variable can be changed to use a different executable for ccls. - - -g:ale_objc_ccls_init_options *g:ale_objc_ccls_init_options* - *b:ale_objc_ccls_init_options* - Type: |Dictionary| - Default: `{}` - - This variable can be changed to customize ccls initialization options. - Example: > - { - \ 'cacheDirectory': '/tmp/ccls', - \ 'cacheFormat': 'binary', - \ 'diagnostics': { - \ 'onOpen': 0, - \ 'opChange': 1000, - \ }, - \ } -< - Visit https://github.com/MaskRay/ccls/wiki/Initialization-options for all - available options and explanations. - - -=============================================================================== vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: |