Tagged Questions
5
votes
1answer
489 views
Can I view the doc string of a function in Python using 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 ...