diff options
author | Mathijs Saey <mathijssaey@gmail.com> | 2017-04-08 20:32:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-08 20:32:47 +0200 |
commit | 588d3383423ae4c82c336280823ee48346054e6a (patch) | |
tree | 78928468e675bb59968bb48c9234930a3f3f2d9e /ale_linters/nim | |
parent | 4e40e8cb608fef9b088e6712d83f4fc3dccd5e77 (diff) | |
download | ale-588d3383423ae4c82c336280823ee48346054e6a.zip |
Added a missing space to the nimcheck command
Diffstat (limited to 'ale_linters/nim')
-rw-r--r-- | ale_linters/nim/nimcheck.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/nim/nimcheck.vim b/ale_linters/nim/nimcheck.vim index ed6a705f..0b8cfc8f 100644 --- a/ale_linters/nim/nimcheck.vim +++ b/ale_linters/nim/nimcheck.vim @@ -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 |