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
|
|
|
|
|
2009-05-15 17:12:13 -04:00
|
|
|
: textmate ( file line -- )
|
2008-01-24 02:50:40 -05:00
|
|
|
[ "mate" , "-a" , "-l" , number>string , , ] { } make
|
2009-05-15 17:12:13 -04:00
|
|
|
run-detached drop ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-08-04 17:01:40 -04:00
|
|
|
[ textmate ] edit-hook set-global
|