From 3ba18d902b138b9a3cd1cb3d6dacb96cb4745771 Mon Sep 17 00:00:00 2001 From: David Halter Date: Mon, 10 Sep 2012 11:06:31 +0200 Subject: [PATCH] again refactorings --- jedi.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jedi.vim b/jedi.vim index cd50187..b6a4cc5 100644 --- a/jedi.vim +++ b/jedi.vim @@ -75,7 +75,7 @@ endfunction " goto " ------------------------------------------------------------------------ function! jedi#goto() - python _goto(is_definition=False) + python _goto() endfunction " ------------------------------------------------------------------------ @@ -89,7 +89,7 @@ endfunction " related_names " ------------------------------------------------------------------------ function! jedi#related_names() - python _goto(related_names=True) + python _goto(is_related_name=True) endfunction " ------------------------------------------------------------------------