We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0589ec2 commit 4f39105Copy full SHA for 4f39105
ftplugin/python/vim_ipython.py
@@ -308,7 +308,8 @@ def get_doc(word, level=0):
308
return ["Not connected to IPython, cannot query: %s" % word]
309
if word.startswith('%'): # request for magic documentation
310
request = ('_doc = get_ipython().object_inspect("{0}", '
311
- 'detail_level={1})').format(word, level)
+ 'detail_level={1})\n'
312
+ 'del _doc["argspec"]').format(word, level)
313
try:
314
msg_id = send(request, silent=True, user_variables=['_doc'])
315
except TypeError: # change in IPython 3.0+
0 commit comments