vim: use nitpick for faster syntastic
authorJean Privat <jean@pryen.org>
Sat, 6 Sep 2014 15:37:31 +0000 (11:37 -0400)
committerJean Privat <jean@pryen.org>
Mon, 8 Sep 2014 13:13:00 +0000 (09:13 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

misc/vim/syntax_checkers/nit/nitg.vim

index f12f3ed..586b151 100644 (file)
@@ -23,12 +23,12 @@ let loaded_syntastic_nit_nitg_checker = 1
 if exists('g:syntastic_nitg')
        let s:nitg = g:syntastic_nitg
 else
-       let s:nitg = "nitc"
+       let s:nitg = "nitpick"
 endif
 
 if !executable(s:nitg)
        if exists('g:syntastic_nitg')
-               echo "Syntastic for Nit error: Custom nitg cannot be found at: " . g:syntastic_nitg
+               echo "Syntastic for Nit error: Custom tool cannot be found at: " . g:syntastic_nitg
        endif
        finish
 endif