#620 Check the Nim files on disk instead

This commit is contained in:
w0rp 2017-06-06 09:55:19 +01:00
parent fcc17dffbe
commit d41f15bcbc

View File

@ -44,10 +44,7 @@ endfunction
function! ale_linters#nim#nimcheck#GetCommand(buffer) abort function! ale_linters#nim#nimcheck#GetCommand(buffer) abort
let l:directory = ale#Escape(fnamemodify(bufname(a:buffer), ':p:h')) return 'nim check --verbosity:0 --colors:off --listFullPaths %s'
return 'nim check --path:' . l:directory
\ . ' --threads:on --verbosity:0 --colors:off --listFullPaths %t'
endfunction endfunction
@ -56,5 +53,6 @@ call ale#linter#Define('nim', {
\ 'executable': 'nim', \ 'executable': 'nim',
\ 'output_stream': 'both', \ 'output_stream': 'both',
\ 'command_callback': 'ale_linters#nim#nimcheck#GetCommand', \ 'command_callback': 'ale_linters#nim#nimcheck#GetCommand',
\ 'callback': 'ale_linters#nim#nimcheck#Handle' \ 'callback': 'ale_linters#nim#nimcheck#Handle',
\ 'lint_file': 1,
\}) \})