11 lines
301 B
Factor
11 lines
301 B
Factor
USING: definitions io.launcher kernel math math.parser parser
|
|
namespaces prettyprint editors make vocabs.loader ;
|
|
IN: editors.textmate
|
|
|
|
: textmate ( file line -- )
|
|
[ "mate" , "-a" , "-l" , number>string , , ] { } make
|
|
run-detached drop ;
|
|
|
|
[ textmate ] edit-hook set-global
|
|
"get-using" require
|