2018-07-30 17:18:16 -04:00
|
|
|
" Author: Andrey Melentyev <andrey.melentyev@protonmail.com>
|
|
|
|
" Description: Clangd language server
|
|
|
|
|
|
|
|
call ale#Set('c_clangd_executable', 'clangd')
|
|
|
|
call ale#Set('c_clangd_options', '')
|
|
|
|
|
|
|
|
function! ale_linters#c#clangd#GetProjectRoot(buffer) abort
|
|
|
|
let l:project_root = ale#path#FindNearestFile(a:buffer, 'compile_commands.json')
|
|
|
|
return !empty(l:project_root) ? fnamemodify(l:project_root, ':h') : ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#c#clangd#GetCommand(buffer) abort
|
2018-08-25 12:13:42 -04:00
|
|
|
return '%e' . ale#Pad(ale#Var(a:buffer, 'c_clangd_options'))
|
2018-07-30 17:18:16 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('c', {
|
|
|
|
\ 'name': 'clangd',
|
|
|
|
\ 'lsp': 'stdio',
|
2018-08-25 12:13:42 -04:00
|
|
|
\ 'executable_callback': ale#VarFunc('c_clangd_executable'),
|
2018-07-30 17:18:16 -04:00
|
|
|
\ 'command_callback': 'ale_linters#c#clangd#GetCommand',
|
|
|
|
\ 'project_root_callback': 'ale_linters#c#clangd#GetProjectRoot',
|
|
|
|
\})
|