From: Alexis Laferrière Date: Tue, 28 Apr 2015 03:51:47 +0000 (-0400) Subject: misc/vim: add option to disable omnifunc X-Git-Tag: v0.7.5~79^2~1 X-Git-Url: http://nitlanguage.org?ds=sidebyside misc/vim: add option to disable omnifunc Fix #1300. Signed-off-by: Alexis Laferrière --- diff --git a/misc/vim/plugin/nit.vim b/misc/vim/plugin/nit.vim index 86d5e45..bb8dd13 100644 --- a/misc/vim/plugin/nit.vim +++ b/misc/vim/plugin/nit.vim @@ -382,8 +382,10 @@ fun NitGitGrep() redraw! endfun -" Activate the omnifunc on Nit files -autocmd FileType nit set omnifunc=NitOmnifunc +if !exists("g:nit_disable_omnifunc") || !g:nit_disable_omnifunc + " Activate the omnifunc on Nit files + autocmd FileType nit set omnifunc=NitOmnifunc +endif " Define the user command Nitdoc for ease of use command -nargs=* Nitdoc call Nitdoc("")