From b9154c7353c26263961dad27d684983c4409c091 Mon Sep 17 00:00:00 2001 From: David Halter Date: Tue, 27 Aug 2013 21:29:45 +0430 Subject: [PATCH] plugin is now almost empty, fixes #113 --- plugin/jedi.vim | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/plugin/jedi.vim b/plugin/jedi.vim index b77ff5d..0700006 100644 --- a/plugin/jedi.vim +++ b/plugin/jedi.vim @@ -1,16 +1,13 @@ -"jedi.vim - Omni Completion for python in vim +"jedi-vim - Omni Completion for python in vim " Maintainer: David Halter " " This part of the software is just the vim interface. The really big deal is " the Jedi Python library. -if g:jedi#auto_vim_configuration - filetype plugin on -endif +" jedi-vim really needs, otherwise jedi-vim cannot start. +filetype plugin on -" ------------------------------------------------------------------------ -" PyImport command -" ------------------------------------------------------------------------ +" Pyimport command command! -nargs=1 -complete=custom,jedi#py_import_completions Pyimport :call jedi#py_import() " vim: set et ts=4: