Merge pull request #456 from mathsaey/patch-1

Added a missing space to the nimcheck command
This commit is contained in:
w0rp 2017-04-08 21:35:49 +01:00 committed by GitHub
commit 94d5fcb15a
1 changed files with 1 additions and 1 deletions

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