Echo function call from vim command line

How would I do something like:

:echo call MyFunction() 

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

+8
vim
source share
1 answer

Use something like this:

:echo Myfunction()

+12
source share

All Articles