summaryrefslogtreecommitdiff
path: root/ale_linters/c/clangd.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/c/clangd.vim')
-rw-r--r--ale_linters/c/clangd.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/c/clangd.vim b/ale_linters/c/clangd.vim
index 6cad601a..918eadcc 100644
--- a/ale_linters/c/clangd.vim
+++ b/ale_linters/c/clangd.vim
@@ -17,7 +17,7 @@ endfunction
call ale#linter#Define('c', {
\ 'name': 'clangd',
\ 'lsp': 'stdio',
-\ 'executable_callback': ale#VarFunc('c_clangd_executable'),
-\ 'command_callback': 'ale_linters#c#clangd#GetCommand',
-\ 'project_root_callback': 'ale_linters#c#clangd#GetProjectRoot',
+\ 'executable': {b -> ale#Var(b, 'c_clangd_executable')},
+\ 'command': function('ale_linters#c#clangd#GetCommand'),
+\ 'project_root': function('ale_linters#c#clangd#GetProjectRoot'),
\})