diff options
author | Bruno R. Barreyra <bruno.r.barreyra@intel.com> | 2018-08-22 13:35:10 +0200 |
---|---|---|
committer | Bruno R. Barreyra <bruno.r.barreyra@intel.com> | 2018-08-23 05:58:06 +0200 |
commit | 795122a042a4792da2e55925afe4e135680019ea (patch) | |
tree | 924e248c93cce3ba178bb629fcf36b4de48e2ccd /ale_linters/objc/clangd.vim | |
parent | a366d325a7c69fa20a3ab69ff8359bcd37d1487a (diff) | |
download | ale-795122a042a4792da2e55925afe4e135680019ea.zip |
Enabling clangd for cpp, objc and objcpp
Diffstat (limited to 'ale_linters/objc/clangd.vim')
-rw-r--r-- | ale_linters/objc/clangd.vim | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ale_linters/objc/clangd.vim b/ale_linters/objc/clangd.vim new file mode 100644 index 00000000..161d2cc7 --- /dev/null +++ b/ale_linters/objc/clangd.vim @@ -0,0 +1,22 @@ +" Author: Andrey Melentyev <andrey.melentyev@protonmail.com> +" Description: Clangd language server + +call ale#Set('objc_clangd_executable', 'clangd') +call ale#Set('objc_clangd_options', '') + +function! ale_linters#objc#clangd#GetProjectRoot(buffer) abort + let l:project_root = ale#path#FindNearestFile(a:buffer, 'compile_commands.json') + return !empty(l:project_root) ? fnamemodify(l:project_root, ':h') : '' +endfunction + +function! ale_linters#objc#clangd#GetCommand(buffer) abort + return '%e' . ale#Pad(ale#Var(a:buffer, 'objc_clangd_options')) +endfunction + +call ale#linter#Define('objc', { +\ 'name': 'clangd', +\ 'lsp': 'stdio', +\ 'executable_callback': ale#VarFunc('objc_clangd_executable'), +\ 'command_callback': 'ale_linters#objc#clangd#GetCommand', +\ 'project_root_callback': 'ale_linters#objc#clangd#GetProjectRoot', +\}) |