temporary compatibility with the doc changes in Jedi 0.8

This commit is contained in:
Dave Halter
2014-03-31 12:46:54 +02:00
parent aa1d83cf68
commit 21192f55f4

View File

@@ -131,7 +131,7 @@ def completions():
abbr=PythonToVimStr(c.name),
# stuff directly behind the completion
menu=PythonToVimStr(c.description),
info=PythonToVimStr(c.doc), # docstr
info=PythonToVimStr(c.doc.full()), # docstr
icase=1, # case insensitive
dup=1 # allow duplicates (maybe later remove this)
)