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