factor/basis/editors/textmate/textmate.factor

9 lines
266 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: definitions io.launcher kernel math math.parser parser
2009-08-04 17:01:40 -04:00
namespaces prettyprint editors make ;
2007-09-20 18:09:08 -04:00
IN: editors.textmate
: textmate ( file line -- )
2008-01-24 02:50:40 -05:00
[ "mate" , "-a" , "-l" , number>string , , ] { } make
run-detached drop ;
2007-09-20 18:09:08 -04:00
2009-08-04 17:01:40 -04:00
[ textmate ] edit-hook set-global