factor/basis/editors/textmate/textmate.factor

11 lines
280 B
Factor

USING: definitions io.launcher kernel math math.parser parser
namespaces prettyprint editors make ;
IN: editors.textmate
: textmate-location ( file line -- )
[ "mate" , "-a" , "-l" , number>string , , ] { } make
try-process ;
[ textmate-location ] edit-hook set-global