summaryrefslogtreecommitdiff
path: root/ale_linters/c/cppcheck.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/c/cppcheck.vim')
-rw-r--r--ale_linters/c/cppcheck.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/c/cppcheck.vim b/ale_linters/c/cppcheck.vim
index 5e8c7936..851f9f11 100644
--- a/ale_linters/c/cppcheck.vim
+++ b/ale_linters/c/cppcheck.vim
@@ -28,7 +28,7 @@ endfunction
call ale#linter#Define('c', {
\ 'name': 'cppcheck',
\ 'output_stream': 'both',
-\ 'executable_callback': ale#VarFunc('c_cppcheck_executable'),
-\ 'command_callback': 'ale_linters#c#cppcheck#GetCommand',
+\ 'executable': {b -> ale#Var(b, 'c_cppcheck_executable')},
+\ 'command': function('ale_linters#c#cppcheck#GetCommand'),
\ 'callback': 'ale#handlers#cppcheck#HandleCppCheckFormat',
\})