From 434283ed1ae1cdcef40207134eb3fec63fac7f9b Mon Sep 17 00:00:00 2001 From: Mathijs Saey Date: Fri, 7 Apr 2017 16:42:46 +0200 Subject: [PATCH] Update nimcheck.vim (#451) Added a '--threads:on' switch to the nim check command so that it doesn't produce errors when using one of the various modules that require threads. --- ale_linters/nim/nimcheck.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/nim/nimcheck.vim b/ale_linters/nim/nimcheck.vim index 0c1373e..ed6a705 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')) . ' --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