Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / basis / editors / textedit / textedit.factor
blobcccc94b53985d28d94f4db867815ad0ec3665d58
1 USING: definitions io.launcher kernel math math.parser parser
2 namespaces prettyprint editors make ;
3 IN: editors.textedit
5 : textedit-location ( file line -- )
6     drop
7     [ "open" , "-a" , "TextEdit", , ] { } make
8     try-process ;
10 [ textedit-location ] edit-hook set-global