diff --git a/pythonx/jedi_vim.py b/pythonx/jedi_vim.py index 7281dd1..503d6a4 100644 --- a/pythonx/jedi_vim.py +++ b/pythonx/jedi_vim.py @@ -360,7 +360,9 @@ def completions(): completions = script.complete(*get_pos(column)) signatures = script.get_signatures(*get_pos(column)) - add_info = any(option in vim.eval("&completeopt").split(",") for option in ("preview", "popup")) + add_info = \ + any(option in vim.eval("&completeopt").split(",") \ + for option in ("preview", "popup")) out = [] for c in completions: d = dict(word=PythonToVimStr(c.name[:len(base)] + c.complete),