forked from VimPlug/jedi
fixed a bug that caused case insensitive values not to swap in some cases
This commit is contained in:
@@ -48,7 +48,7 @@ if 1:
|
||||
completions = functions.complete(source, row, column, buf_path)
|
||||
out = []
|
||||
for c in completions:
|
||||
d = dict(word=base + c.complete,
|
||||
d = dict(word=c.word[:len(base)] + c.complete,
|
||||
abbr=c.word,
|
||||
# stuff directly behind the completion
|
||||
menu=PythonToVimStr(c.description),
|
||||
|
||||
Reference in New Issue
Block a user