summaryrefslogtreecommitdiff
path: root/doc/ale-objc.txt
diff options
context:
space:
mode:
authorYe Jingchen <ye.jingchen@gmail.com>2018-09-26 20:09:37 +0800
committerYe Jingchen <ye.jingchen@gmail.com>2018-09-26 20:09:37 +0800
commit56658fd3ada284a373afffb49b0ec2d66ad00445 (patch)
tree7b34083c1cda56e9cdc02239e73c3a2f5d8f513f /doc/ale-objc.txt
parent143c3cd09f52996c90b78059275a400d3c2327b0 (diff)
downloadale-56658fd3ada284a373afffb49b0ec2d66ad00445.zip
Add ccls support for C/C++/ObjC
Diffstat (limited to 'doc/ale-objc.txt')
-rw-r--r--doc/ale-objc.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/ale-objc.txt b/doc/ale-objc.txt
index 2d560267..0163175a 100644
--- a/doc/ale-objc.txt
+++ b/doc/ale-objc.txt
@@ -39,4 +39,35 @@ 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: