misc/vim: update the vim plugin to use core instead of standard
authorAlexis Laferrière <alexis.laf@xymus.net>
Thu, 10 Sep 2015 18:24:45 +0000 (14:24 -0400)
committerAlexis Laferrière <alexis.laf@xymus.net>
Thu, 10 Sep 2015 18:25:16 +0000 (14:25 -0400)
Signed-off-by: Alexis Laferrière <alexis.laf@xymus.net>

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
                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
                        silent let &complete = &complete . ',s' . file
                        silent set complete?
                endfor