Is there a way to run these scripts from the : commandline with a few keystrokes?
:
Over the last couple of months, I\'ve built a series of fi
You could use the command feature of vim. In your unit_test_cpp.vim file you would add something like this:
command
unit_test_cpp.vim
command Utc call CreateUnitTests()
Now when you type :Utc it will call your function. The only limitation is that your command must start with an uppercase letter.
:Utc