Merge: misc/vim: update the vim plugin to use core instead of standard
authorJean Privat <jean@pryen.org>
Thu, 10 Sep 2015 18:55:07 +0000 (14:55 -0400)
committerJean Privat <jean@pryen.org>
Thu, 10 Sep 2015 18:55:07 +0000 (14:55 -0400)
The plugin was not updated with the new name for the `core` library, but it's never too late.

Pull-Request: #1703
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Lucas Bajolet <r4pass@hotmail.com>

misc/vim/plugin/nit.vim

index bb8dd13..363a8f9 100644 (file)
@@ -53,7 +53,7 @@ function NitComplete()
                let g:acp_behaviorKeywordIgnores = ['new', 'var', 'in', 'do', 'els', 'end', 'ret', 'for', 'fun']
 
                " Use nitls to compute all interesting files from the current directory and the standard library
-               for file in split(system('nitls -M standard .', '\n'))
+               for file in split(system('nitls -M core .', '\n'))
                        silent let &complete = &complete . ',s' . file
                        silent set complete?
                endfor