summaryrefslogtreecommitdiff
path: root/ale_linters/objc/ccls.vim
blob: f354c7d70232c9eba10a1a43c9ac0a99fe5a412b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
" 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', {})

function! ale_linters#objc#ccls#GetProjectRoot(buffer) abort
    let l:project_root = ale#path#FindNearestFile(a:buffer, '.ccls-root')

    if empty(l:project_root)
        let l:project_root = ale#path#FindNearestFile(a:buffer, 'compile_commands.json')
    elseif empty(l:project_root)
        let l:project_root = ale#path#FindNearestFile(a:buffer, '.ccls')
    endif

    return !empty(l:project_root) ? fnamemodify(l:project_root, ':h') : ''
endfunction

function! ale_linters#objc#ccls#GetInitializationOptions(buffer) abort
    return ale#Var(a:buffer, 'objc_ccls_init_options')
endfunction

call ale#linter#Define('objc', {
\   'name': 'ccls',
\   'lsp': 'stdio',
\   'executable_callback': ale#VarFunc('objc_ccls_executable'),
\   'command': '%e',
\   'project_root_callback': 'ale_linters#objc#ccls#GetProjectRoot',
\   'initialization_options_callback': 'ale_linters#objc#ccls#GetInitializationOptions',
\})