我可以使用 VIM 查看 Python 中函数的文档字符串吗?
在 VIM 中编写 Python 时,有什么方法可以查看函数的文档字符串吗?
例如:
def MyFunction(spam):
"""A function that foobars the spam
returns eggs"""
return foobar(spam).eggs()
我希望能够输入 MyFunction(spam0)
并查看文档字符串,无论是作为工具提示还是在状态栏中或 VIM 允许的任何其他方式。
Is there any way to view a function's doc string when writing Python in VIM?
For instance:
def MyFunction(spam):
"""A function that foobars the spam
returns eggs"""
return foobar(spam).eggs()
I'd like to be able to type MyFunction(spam0)
and see the doc string, either as a tooltip or in the status bar or any other way that VIM allows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
pythoncomplete 脚本 可能就是您正在寻找的。
The pythoncomplete script is probably what you are looking for.