diff options
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/c/ccls.vim | 30 | ||||
-rw-r--r-- | ale_linters/cpp/ccls.vim | 30 | ||||
-rw-r--r-- | ale_linters/objc/ccls.vim | 30 |
3 files changed, 90 insertions, 0 deletions
diff --git a/ale_linters/c/ccls.vim b/ale_linters/c/ccls.vim new file mode 100644 index 00000000..0aad0a3d --- /dev/null +++ b/ale_linters/c/ccls.vim @@ -0,0 +1,30 @@ +" 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', {}) + +function! ale_linters#c#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#c#ccls#GetInitializationOptions(buffer) abort + return ale#Var(a:buffer, 'c_ccls_init_options') +endfunction + +call ale#linter#Define('c', { +\ 'name': 'ccls', +\ 'lsp': 'stdio', +\ 'executable_callback': ale#VarFunc('c_ccls_executable'), +\ 'command': '%e', +\ 'project_root_callback': 'ale_linters#c#ccls#GetProjectRoot', +\ 'initialization_options_callback': 'ale_linters#c#ccls#GetInitializationOptions', +\}) diff --git a/ale_linters/cpp/ccls.vim b/ale_linters/cpp/ccls.vim new file mode 100644 index 00000000..e63849c3 --- /dev/null +++ b/ale_linters/cpp/ccls.vim @@ -0,0 +1,30 @@ +" 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('cpp_ccls_executable', 'ccls') +call ale#Set('cpp_ccls_init_options', {}) + +function! ale_linters#cpp#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#cpp#ccls#GetInitializationOptions(buffer) abort + return ale#Var(a:buffer, 'cpp_ccls_init_options') +endfunction + +call ale#linter#Define('cpp', { +\ 'name': 'ccls', +\ 'lsp': 'stdio', +\ 'executable_callback': ale#VarFunc('cpp_ccls_executable'), +\ 'command': '%e', +\ 'project_root_callback': 'ale_linters#cpp#ccls#GetProjectRoot', +\ 'initialization_options_callback': 'ale_linters#cpp#ccls#GetInitializationOptions', +\}) diff --git a/ale_linters/objc/ccls.vim b/ale_linters/objc/ccls.vim new file mode 100644 index 00000000..f354c7d7 --- /dev/null +++ b/ale_linters/objc/ccls.vim @@ -0,0 +1,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', +\}) |