summaryrefslogtreecommitdiff
path: root/doc/ale-cpp.txt
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-09-28 09:02:00 +0100
committerGitHub <noreply@github.com>2018-09-28 09:02:00 +0100
commita26b3319a1f37c82be8098b6eae4e6f2985a31eb (patch)
tree309edf6f0218f5728b3ef28c7a0ed100fe8ca45f /doc/ale-cpp.txt
parentfd0467f9927d0bf5ee88b157c1978c3b69509460 (diff)
parent8891b7c349328120e5ec3f8022399f884a67e088 (diff)
downloadale-a26b3319a1f37c82be8098b6eae4e6f2985a31eb.zip
Merge pull request #1950 from yejingchen/ccls
Add ccls support for C/C++/ObjC
Diffstat (limited to 'doc/ale-cpp.txt')
-rw-r--r--doc/ale-cpp.txt31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt
index 6c05c96d..47ba2c70 100644
--- a/doc/ale-cpp.txt
+++ b/doc/ale-cpp.txt
@@ -280,4 +280,35 @@ See |ale-c-uncrustify| for information about the available options.
===============================================================================
+ccls *ale-cpp-ccls*
+
+g:ale_cpp_ccls_executable *g:ale_cpp_ccls_executable*
+ *b:ale_cpp_ccls_executable*
+ Type: |String|
+ Default: `'ccls'`
+
+ This variable can be changed to use a different executable for ccls.
+
+
+g:ale_cpp_ccls_init_options *g:ale_cpp_ccls_init_options*
+ *b:ale_cpp_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: