From ac754b4785af42acce923b1d20c17421f4d2d913 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 27 Aug 2013 11:29:31 +0430 Subject: [PATCH] add unused auto-initialization (Python is not a valid filetype) --- plugin/jedi.vim | 8 -------- 1 file changed, 8 deletions(-) diff --git a/plugin/jedi.vim b/plugin/jedi.vim index 5c1e2ac..bab0215 100644 --- a/plugin/jedi.vim +++ b/plugin/jedi.vim @@ -73,14 +73,6 @@ endfor if g:jedi#auto_vim_configuration filetype plugin on endif -if g:jedi#auto_initialization - " this is only here because in some cases the VIM library adds their - " autocompletion as a default, which may cause problems, depending on the - " order of invocation. - if g:jedi#completions_enabled - autocmd FileType Python setlocal omnifunc=jedi#completions switchbuf=useopen " needed for documentation/pydoc - endif -endif " ------------------------------------------------------------------------