Thread vim: c-code compilieren ohne neues fenster zu öffnen (6 answers)
Opened by gast at 2011-02-28 14:53

Gast [gelöst] gast
 2011-03-02 10:55
#146181 #146181
Habe etwas gefunden:

Code: (dl )
1
2
3
4
5
6
map <F4> :call CompileRunGcc()<CR>
func! CompileRunGcc()
exec "w"
exec "!gcc\ -o\ %<\ %<"
exec "! ./%<"
endfunc

Last edited: 2011-03-02 10:57:29 +0100 (CET)

View full thread vim: c-code compilieren ohne neues fenster zu öffnen