factor/basis/editors/macvim/macvim.factor

11 lines
257 B
Factor
Raw Normal View History

2008-09-11 21:15:48 -04:00
USING: definitions io.launcher kernel math math.parser parser
namespaces prettyprint editors make ;
IN: editors.macvim
: macvim ( file line -- )
2008-09-11 21:15:48 -04:00
drop
[ "open" , "-a" , "MacVim", , ] { } make
run-detached drop ;
2008-09-11 21:15:48 -04:00
[ macvim ] edit-hook set-global