summaryrefslogtreecommitdiff
path: root/ale_linters/c/ccls.vim
blob: 9e3dafe975c3a893ada4257b4b39c726262489e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" Author: Ye Jingchen <ye.jingchen@gmail.com>, Ben Falconer <ben@falconers.me.uk>, jtalowell <jtalowell@protonmail.com>
" Description: A language server for C

call ale#Set('c_ccls_executable', 'ccls')
call ale#Set('c_ccls_init_options', {})

call ale#linter#Define('c', {
\   'name': 'ccls',
\   'lsp': 'stdio',
\   'executable': {b -> ale#Var(b, 'c_ccls_executable')},
\   'command': '%e',
\   'project_root': function('ale#handlers#ccls#GetProjectRoot'),
\   'initialization_options': {b -> ale#Var(b, 'c_ccls_init_options')},
\})