Added a missing space to the nimcheck command

This commit is contained in:
Mathijs Saey 2017-04-08 20:32:47 +02:00 committed by GitHub
parent 4e40e8cb60
commit 588d338342

View File

@ -52,7 +52,7 @@ endfunction
function! ale_linters#nim#nimcheck#GetCommand(buffer)
return 'nim check --path:' . fnameescape(fnamemodify(bufname(a:buffer), ':p:h')) . '--threads:on --verbosity:0 --colors:off --listFullPaths %t'
return 'nim check --path:' . fnameescape(fnamemodify(bufname(a:buffer), ':p:h')) . ' --threads:on --verbosity:0 --colors:off --listFullPaths %t'
endfunction