up vote 4 down vote favorite
6
share [g+] share [fb]

Is there a way to compile and run a C program from VIM without typing its filename ?

link|improve this question
feedback

2 Answers

:!gcc -o somename % && ./somename
When using :!, % will be subsituted by the name of the currently opened file.

When your project becomes larger, you can also write a makefile and compile the current project with :make, if there are any errors, vim will jump to them automatically.

link|improve this answer
7  
+1 for pointing out that % is substituted by the filename. – René Nyffenegger Apr 13 '10 at 8:11
I like you answer. I want to make it final. Please guide. – Coder Apr 13 '10 at 9:12
I need 15 votes to make it final :( – Coder Apr 13 '10 at 9:13
3  
@Coder: No, you can accept the answer. Just click the check. You don't need any amount of votes for that. – rampion Apr 14 '10 at 21:57
feedback

use the following mapping code in your .vimrc file. for compile and run a c programming file.

map <F8> : !gcc % && ./a.out <CR>

F8 key for run the mapping.

"%" is taken the current file name.

all in all, if you want to save with this keymap to:
map <F8> :w <CR> :!gcc % && ./a.out <CR>

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.