mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/ale/ale_linters/c/ccls.vim

15 lines
534 B
VimL
Raw Normal View History

2018-09-30 16:58:57 -04:00
" 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',
2019-03-08 06:04:56 -05:00
\ 'executable': {b -> ale#Var(b, 'c_ccls_executable')},
2018-09-30 16:58:57 -04:00
\ 'command': '%e',
2019-03-08 06:04:56 -05:00
\ 'project_root': function('ale#handlers#ccls#GetProjectRoot'),
\ 'initialization_options': {b -> ale#Var(b, 'c_ccls_init_options')},
2018-09-30 16:58:57 -04:00
\})