Programmatically execute vim commands?
- by Ben Gartner
I'm interested in setting up a TDD environment for developing Vim scripts and rc files. As a simple example, say I want to have vim insert 8 spaces when I press the tab key. I would set up a script that did the following:
Launch vim using a sandboxed .vimrc file
press i
press tab
press esc
press :w test_out
assert that test_out contains ' …