Start clangd from system path instead of absolute path
This commit is contained in:
parent
f20e5b5e19
commit
1aff0cc30d
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ nnoremap <F5> :call LanguageClient_contextMenu()<CR>
|
||||||
nnoremap <F12> :call LanguageClient#textDocument_definition()<CR>
|
nnoremap <F12> :call LanguageClient#textDocument_definition()<CR>
|
||||||
let g:LanguageClient_serverCommands = {
|
let g:LanguageClient_serverCommands = {
|
||||||
\ 'python': ['pyls'],
|
\ 'python': ['pyls'],
|
||||||
\ 'cpp': ['/usr/lib/llvm-7/bin/clangd'],
|
\ 'cpp': ['clangd'],
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
" autoread/checktime timer {{{
|
" autoread/checktime timer {{{
|
||||||
|
|
Loading…
Reference in a new issue