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