在VIM中编写Python时有没有办法查看函数的doc字符串?
例如:
def MyFunction(spam): """A function that foobars the spam returns eggs""" return foobar(spam).eggs()
我希望能够键入MyFunction(spam0)并查看文档字符串,作为工具提示或状态栏或VIM允许的任何其他方式.
MyFunction(spam0)