summaryrefslogtreecommitdiff
path: root/ale_linters/go/bingo.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/go/bingo.vim')
-rw-r--r--ale_linters/go/bingo.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/ale_linters/go/bingo.vim b/ale_linters/go/bingo.vim
index ba80fbe8..e446bdcc 100644
--- a/ale_linters/go/bingo.vim
+++ b/ale_linters/go/bingo.vim
@@ -23,7 +23,7 @@ endfunction
call ale#linter#Define('go', {
\ 'name': 'bingo',
\ 'lsp': 'stdio',
-\ 'executable_callback': ale#VarFunc('go_bingo_executable'),
-\ 'command_callback': 'ale_linters#go#bingo#GetCommand',
-\ 'project_root_callback': 'ale_linters#go#bingo#FindProjectRoot',
+\ 'executable': {b -> ale#Var(b, 'go_bingo_executable')},
+\ 'command': function('ale_linters#go#bingo#GetCommand'),
+\ 'project_root': function('ale_linters#go#bingo#FindProjectRoot'),
\})