vote up 3 vote down star
1

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.

flag

1 Answer

vote up 1 vote down

The pythoncomplete script is probably what you are looking for.

link|flag
OK, I see that I have that as part of the existing distribution. How can I use it? – Nathan Fellman Jul 8 at 10:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.