What would be the best way to make a hotkey that makes a project and then runs the generated binary?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 1 down vote accepted
nmap key :!make && ./a.out<CR>

This just runs make and, if it succeeds, runs a.out. If your binary is not named a.out, replace a.out with the name of the generated binary.

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.