Added automatic compile-commands-dir arg to ale_cpp_clangd linter

This commit is contained in:
Murfalo 2019-10-03 13:17:17 -04:00
parent 41ff80dc9e
commit 618f2d71fc
1 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,11 @@ call ale#Set('cpp_clangd_executable', 'clangd')
call ale#Set('cpp_clangd_options', '')
function! ale_linters#cpp#clangd#GetCommand(buffer) abort
return '%e' . ale#Pad(ale#Var(a:buffer, 'cpp_clangd_options'))
let l:build_dir = ale#c#GetBuildDirectory(a:buffer)
return '%e'
\ . ale#Pad(ale#Var(a:buffer, 'cpp_clangd_options'))
\ . (!empty(l:build_dir) ? ' -compile-commands-dir=' . ale#Escape(l:build_dir) : '')
endfunction
call ale#linter#Define('cpp', {