diff options
author | Ben Falconer <ben@falconers.me.uk> | 2018-06-06 17:03:15 +0100 |
---|---|---|
committer | Ben Falconer <ben@falconers.me.uk> | 2018-06-06 17:58:47 +0100 |
commit | 20db9ab7197b6341644fcddc87f82c5731852ea8 (patch) | |
tree | 507190ec5e6bfa4f5c6c156b4857da097056f725 /doc | |
parent | 641c0c797ba5dc4adac199fca4015d833a7e1f61 (diff) | |
download | ale-20db9ab7197b6341644fcddc87f82c5731852ea8.zip |
Add the cquery LSP #1475 #1594
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ale-cpp.txt | 20 | ||||
-rw-r--r-- | doc/ale.txt | 3 |
2 files changed, 22 insertions, 1 deletions
diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt index 05e54799..8bd111e4 100644 --- a/doc/ale-cpp.txt +++ b/doc/ale-cpp.txt @@ -157,6 +157,26 @@ g:ale_cpp_cpplint_options *g:ale_cpp_cpplint_options* =============================================================================== +cquery *ale-cpp-cquery* + +g:ale_cpp_cquery_executable *g:ale_cpp_cquery_executable* + *b:ale_cpp_cquery_executable* + Type: |String| + Default: `'cquery'` + + This variable can be changed to use a different executable for cquery. + + +g:ale_cpp_cquery_cache_directory *g:ale_cpp_cquery_cache_directory* + *b:ale_cpp_cquery_cache_directory* + Type: |String| + Default: `'~/.cache/cquery'` + + This variable can be changed to decide which directory cquery uses for its + cache. + + +=============================================================================== flawfinder *ale-cpp-flawfinder* g:ale_cpp_flawfinder_executable *g:ale_cpp_flawfinder_executable* diff --git a/doc/ale.txt b/doc/ale.txt index 0808e2ac..0531589c 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -44,6 +44,7 @@ CONTENTS *ale-contents* clangtidy...........................|ale-cpp-clangtidy| cppcheck............................|ale-cpp-cppcheck| cpplint.............................|ale-cpp-cpplint| + cquery..............................|ale-cpp-cquery| flawfinder..........................|ale-cpp-flawfinder| gcc.................................|ale-cpp-gcc| c#....................................|ale-cs-options| @@ -319,7 +320,7 @@ Notes: * Bash: `shell` (-n flag), `shellcheck`, `shfmt` * Bourne Shell: `shell` (-n flag), `shellcheck`, `shfmt` * C: `cppcheck`, `cpplint`!!, `clang`, `clangtidy`!!, `clang-format`, `flawfinder`, `gcc` -* C++ (filetype cpp): `clang`, `clangcheck`!!, `clangtidy`!!, `clang-format`, `cppcheck`, `cpplint`!!, `flawfinder`, `gcc` +* C++ (filetype cpp): `clang`, `clangcheck`!!, `clangtidy`!!, `clang-format`, `cppcheck`, `cpplint`!!, `cquery`, `flawfinder`, `gcc` * CUDA: `nvcc`!! * C#: `mcs`, `mcsc`!! * Chef: `foodcritic` |