diff options
author | Tomas Janousek <tomi@nomi.cz> | 2020-04-18 13:15:32 +0200 |
---|---|---|
committer | Tomas Janousek <tomi@nomi.cz> | 2020-04-18 13:57:57 +0200 |
commit | 4fbfcc9dec06feae5643df3b7b153b2329f7c1da (patch) | |
tree | 8c6dbeb09304002f6ffa791031624e99d05c219d /ale_linters/cpp/ccls.vim | |
parent | 82f734a7c286d8705c9a6e2879b4173fe18a6356 (diff) | |
download | ale-4fbfcc9dec06feae5643df3b7b153b2329f7c1da.zip |
ccls: Detect build dir and set compilationDatabaseDirectory
Fixes #2621
Diffstat (limited to 'ale_linters/cpp/ccls.vim')
-rw-r--r-- | ale_linters/cpp/ccls.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/cpp/ccls.vim b/ale_linters/cpp/ccls.vim index b265ff70..38f8df9c 100644 --- a/ale_linters/cpp/ccls.vim +++ b/ale_linters/cpp/ccls.vim @@ -3,6 +3,7 @@ call ale#Set('cpp_ccls_executable', 'ccls') call ale#Set('cpp_ccls_init_options', {}) +call ale#Set('c_build_dir', '') call ale#linter#Define('cpp', { \ 'name': 'ccls', @@ -10,5 +11,5 @@ call ale#linter#Define('cpp', { \ 'executable': {b -> ale#Var(b, 'cpp_ccls_executable')}, \ 'command': '%e', \ 'project_root': function('ale#handlers#ccls#GetProjectRoot'), -\ 'initialization_options': {b -> ale#Var(b, 'cpp_ccls_init_options')}, +\ 'initialization_options': {b -> ale#handlers#ccls#GetInitOpts(b, 'cpp_ccls_init_options')}, \}) |