在VIM中编写
Python时有没有办法查看函数的doc字符串?
例如:
def MyFunction(spam): """A function that foobars the spam returns eggs""" return foobar(spam).eggs()
我希望能够键入MyFunction(spam0)并查看文档字符串,可以是工具提示,也可以是状态栏或VIM允许的任何其他方式.
pythoncomplete script可能就是你想要的.
原文链接:https://www.f2er.com/bash/384830.html