Vim tips: make things work
Posted by: nico on
Jun 11th, 2010 |
Filed under: Vim Tips
Whenever you think you’re project is good enough to compile just hit :make to be proven wrong. Type :make test to run your tests (because you are using TDD, aren’t you?) and watch all those red flags fly by.Also, add the following mapping to your ~/.vimrc for an extra happy coding session:
-
map <F5> :make
-
map <F6> :make test




Add A Comment