summaryrefslogtreecommitdiff
path: root/ale_linters/cpp/clangd.vim
blob: 9139f05405806f082d7b530b19ac961a92dec93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
" Author: Andrey Melentyev <andrey.melentyev@protonmail.com>
" Description: Clangd language server

call ale#Set('cpp_clangd_executable', 'clangd')
call ale#Set('cpp_clangd_options', '')

function! ale_linters#cpp#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#cpp#clangd#GetCommand(buffer) abort
    return '%e' . ale#Pad(ale#Var(a:buffer, 'cpp_clangd_options'))
endfunction

call ale#linter#Define('cpp', {
\   'name': 'clangd',
\   'lsp': 'stdio',
\   'executable_callback': ale#VarFunc('cpp_clangd_executable'),
\   'command_callback': 'ale_linters#cpp#clangd#GetCommand',
\   'project_root_callback': 'ale_linters#cpp#clangd#GetProjectRoot',
\})