revert to old doc property, the doc.full() call was not backwards compatible and has since been reverted within Jedi

This commit is contained in:
Dave Halter
2014-04-23 12:08:58 +02:00
parent 0f591e1283
commit 503fe3da67

View File

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