mirror of
https://github.com/davidhalter/jedi-vim.git
synced 2025-12-08 03:24:47 +08:00
Make the equals available in the completion list, fixes #350.
This commit is contained in:
@@ -183,7 +183,7 @@ def completions():
|
|||||||
out = []
|
out = []
|
||||||
for c in completions:
|
for c in completions:
|
||||||
d = dict(word=PythonToVimStr(c.name[:len(base)] + c.complete),
|
d = dict(word=PythonToVimStr(c.name[:len(base)] + c.complete),
|
||||||
abbr=PythonToVimStr(c.name),
|
abbr=PythonToVimStr(c.name_with_symbols),
|
||||||
# stuff directly behind the completion
|
# stuff directly behind the completion
|
||||||
menu=PythonToVimStr(c.description),
|
menu=PythonToVimStr(c.description),
|
||||||
info=PythonToVimStr(c.docstring()), # docstr
|
info=PythonToVimStr(c.docstring()), # docstr
|
||||||
|
|||||||
Reference in New Issue
Block a user