Juniper Belmont
Juniper Belmont

Reputation: 3564

Echo a function call from vim command line

How would I do something like:

:echo call MyFunction()

so that I can see the result of calling the function?

Upvotes: 15

Views: 6324

Answers (1)

1983
1983

Reputation: 5963

Use something like this:

:echo Myfunction()

Upvotes: 25

Related Questions