diff options
Diffstat (limited to 'ale_linters/vhdl/vcom.vim')
-rw-r--r-- | ale_linters/vhdl/vcom.vim | 4 |
1 files changed, 2 insertions, 2 deletions
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', \}) |