From cc087ef463ba0cedf61db9ef75a821847e7390a1 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 27 Oct 2017 00:07:33 +0200 Subject: [PATCH] Somehow show_goto_multi_results was called without arguments This was obviously wrong and fixed by inserting the obvious param --- pythonx/jedi_vim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonx/jedi_vim.py b/pythonx/jedi_vim.py index 7e5e0f1..ca5e274 100644 --- a/pythonx/jedi_vim.py +++ b/pythonx/jedi_vim.py @@ -336,7 +336,7 @@ def goto(mode="goto"): repr(PythonToVimStr(old_wildignore))) vim.current.window.cursor = d.line, d.column else: - show_goto_multi_results() + show_goto_multi_results(definitions) return definitions