summaryrefslogtreecommitdiff
path: root/ale_linters/vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/vhdl')
-rw-r--r--ale_linters/vhdl/ghdl.vim4
-rw-r--r--ale_linters/vhdl/vcom.vim4
-rw-r--r--ale_linters/vhdl/xvhdl.vim4
3 files changed, 6 insertions, 6 deletions
diff --git a/ale_linters/vhdl/ghdl.vim b/ale_linters/vhdl/ghdl.vim
index c21be242..b09e620b 100644
--- a/ale_linters/vhdl/ghdl.vim
+++ b/ale_linters/vhdl/ghdl.vim
@@ -31,7 +31,7 @@ endfunction
call ale#linter#Define('vhdl', {
\ 'name': 'ghdl',
\ 'output_stream': 'stderr',
-\ 'executable_callback': ale#VarFunc('vhdl_ghdl_executable'),
-\ 'command_callback': 'ale_linters#vhdl#ghdl#GetCommand',
+\ 'executable': {b -> ale#Var(b, 'vhdl_ghdl_executable')},
+\ 'command': function('ale_linters#vhdl#ghdl#GetCommand'),
\ 'callback': 'ale_linters#vhdl#ghdl#Handle',
\})
diff --git a/ale_linters/vhdl/vcom.vim b/ale_linters/vhdl/vcom.vim
index e4631b68..1914fd33 100644
--- a/ale_linters/vhdl/vcom.vim
+++ b/ale_linters/vhdl/vcom.vim
@@ -32,7 +32,7 @@ endfunction
call ale#linter#Define('vhdl', {
\ 'name': 'vcom',
\ 'output_stream': 'stdout',
-\ 'executable_callback': ale#VarFunc('vhdl_vcom_executable'),
-\ 'command_callback': 'ale_linters#vhdl#vcom#GetCommand',
+\ 'executable': {b -> ale#Var(b, 'vhdl_vcom_executable')},
+\ 'command': function('ale_linters#vhdl#vcom#GetCommand'),
\ 'callback': 'ale_linters#vhdl#vcom#Handle',
\})
diff --git a/ale_linters/vhdl/xvhdl.vim b/ale_linters/vhdl/xvhdl.vim
index 6e0d411d..8010ff14 100644
--- a/ale_linters/vhdl/xvhdl.vim
+++ b/ale_linters/vhdl/xvhdl.vim
@@ -31,7 +31,7 @@ endfunction
call ale#linter#Define('vhdl', {
\ 'name': 'xvhdl',
\ 'output_stream': 'stdout',
-\ 'executable_callback': ale#VarFunc('vhdl_xvhdl_executable'),
-\ 'command_callback': 'ale_linters#vhdl#xvhdl#GetCommand',
+\ 'executable': {b -> ale#Var(b, 'vhdl_xvhdl_executable')},
+\ 'command': function('ale_linters#vhdl#xvhdl#GetCommand'),
\ 'callback': 'ale_linters#vhdl#xvhdl#Handle',
\})