有没有办法让 Eclipse+PyDev 像 Python 的 help() 一样显示函数文档?
我想强制 Eclipse 在弹出窗口中显示 Python 的帮助输出而不是整个函数,即给出:
def myFunc(arg):
'''Function description'''
return 1
我希望代码辅助弹出窗口仅包含“函数描述”而不是“返回 1”
I would like to force Eclipse to show Python's help output in the popup instead of the whole function, i.e. given:
def myFunc(arg):
'''Function description'''
return 1
I would like the code assist popup to contain only "Function description" and not "return 1"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试勾选“显示文档字符串?”在“窗口->”首选项->派德夫 ->编辑->徘徊'。
Try ticking 'Show docstrings?' in 'Window -> Preferences -> Pydev -> Editor -> Hover'.