summaryrefslogtreecommitdiff
path: root/ale_linters/v/v.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/v/v.vim')
-rw-r--r--ale_linters/v/v.vim17
1 files changed, 4 insertions, 13 deletions
diff --git a/ale_linters/v/v.vim b/ale_linters/v/v.vim
index afa98c56..dfe6f562 100644
--- a/ale_linters/v/v.vim
+++ b/ale_linters/v/v.vim
@@ -4,17 +4,6 @@
call ale#Set('v_v_executable', 'v')
call ale#Set('v_v_options', '')
-function! ale_linters#v#v#GetCommand(buffer) abort
- let l:options = ale#Var(a:buffer, 'v_v_options')
-
- " Run v in local directory with relative path
- let l:command = ale#Var(a:buffer, 'v_v_executable')
- \ . ale#Pad(l:options)
- \ . ' .' . ' -o /tmp/vim-ale-v'
-
- return l:command
-endfunction
-
function! ale_linters#v#v#Handler(buffer, lines) abort
let l:dir = expand('#' . a:buffer . ':p:h')
let l:output = []
@@ -73,9 +62,11 @@ endfunction
call ale#linter#Define('v', {
\ 'name': 'v',
-\ 'aliases': [],
\ 'executable': {b -> ale#Var(b, 'v_v_executable')},
-\ 'command': function('ale_linters#v#v#GetCommand'),
+\ 'command': {b ->
+\ '%e' . ale#Pad(ale#Var(b, 'v_v_options'))
+\ . ' . -o /tmp/vim-ale-v'
+\ },
\ 'output_stream': 'stderr',
\ 'callback': 'ale_linters#v#v#Handler',
\ 'lint_file': 1,