summaryrefslogtreecommitdiff
path: root/ale_linters/objc/ccls.vim
blob: 51ecf0567a8db13f7f6e69c6588279d879217c87 (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 Objective-C

call ale#Set('objc_ccls_executable', 'ccls')
call ale#Set('objc_ccls_init_options', {})

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