From: Alexis Laferrière Date: Thu, 10 Sep 2015 18:24:45 +0000 (-0400) Subject: misc/vim: update the vim plugin to use core instead of standard X-Git-Tag: v0.7.8~30^2 X-Git-Url: http://nitlanguage.org misc/vim: update the vim plugin to use core instead of standard Signed-off-by: Alexis Laferrière --- diff --git a/misc/vim/plugin/nit.vim b/misc/vim/plugin/nit.vim index bb8dd13..363a8f9 100644 --- a/misc/vim/plugin/nit.vim +++ b/misc/vim/plugin/nit.vim @@ -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