From 87ac8659193f829af26ebb8b8caa2d1e44b20dca Mon Sep 17 00:00:00 2001 From: David Halter Date: Wed, 28 Aug 2013 15:44:21 +0430 Subject: [PATCH] cleanup + all commands should cycle through entries, fixes #136 --- ftplugin/python/jedi.vim | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ftplugin/python/jedi.vim b/ftplugin/python/jedi.vim index fccdfc3..148f842 100644 --- a/ftplugin/python/jedi.vim +++ b/ftplugin/python/jedi.vim @@ -14,17 +14,10 @@ if g:jedi#auto_initialization " map ctrl+space for autocompletion if g:jedi#completions_command == "" " in terminals, sometimes equals - " - "if g:jedi#popup_select_first - "inoremap pumvisible() ? - " \ "" : - " \ "=pumvisible() ?" . - " \ "\"\\c-n>\\c-p>\\c-n>\" :" . - " \ "\" \\bs>\\C-n>\"\" inoremap jedi#auto_complete_string() endif if g:jedi#completions_command != "" - execute "inoremap ".g:jedi#completions_command." " + execute "inoremap ".g:jedi#completions_command." jedi#auto_complete_string()" endif endif