我可以使用 VIM 查看 Python 中函数的文档字符串吗?

发布于 2024-07-25 23:20:26 字数 288 浏览 11 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你是暖光i 2024-08-01 23:20:26

pythoncomplete 脚本 可能就是您正在寻找的。

The pythoncomplete script is probably what you are looking for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文