From 47b00dfaf1e756edb14adf2c44e8bc918f65da5a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Thu, 10 Sep 2015 14:24:45 -0400 Subject: [PATCH] misc/vim: update the vim plugin to use core instead of standard MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- misc/vim/plugin/nit.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.9.5