How do I define a function so that I can call it from command-line mode without :call in front of it?

Right now, I have to do this: :call TrimWhitespace()

I want to define it so that I can do this: :TrimWhitespace

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

This won't be a function, you should create a command instead. Check the documentation for commands (:help user-commands in Vim).

The simplest case is of a command to call a function:

command! TrimWhitespace call TrimWhitespace()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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