" Vim macros file " Language: csound " Maintainer: luis jure " Version: 2.0 " Last change: 2002 mar 30 " function-key maps " thanks to hints by Jay Chernick " saves present file, compiles and sends to audio output, returns to vim " (you can try the --sched option if it works in the version you are using) :map :w :!csound -b 4096 -d -o devaudio %:p " saves present file, compiles and writes output to file, returns to vim :map :w :!csound -H1 -W -d -o $SFDIR/test.wav %:p " saves present file, compiles and writes output to file, stays in console (for debugging) :map :w :!csound -H1 -W -d -o $SFDIR/test.wav %:p " plays last compiled file :map :!aplay $SFDIR/test.wav