]> gitweb.factorcode.org Git - factor.git/blob - basis/editors/textedit/textedit.factor
c21004b06d207e0c046186971380f6afd8daca02
[factor.git] / basis / editors / textedit / textedit.factor
1 USING: definitions io.launcher kernel math math.parser parser
2 namespaces prettyprint editors make ;
3 IN: editors.textedit
4
5 SINGLETON: textedit
6 textedit editor-class set-global
7
8 M: textedit editor-command ( file line -- command )
9     drop
10     [ "open" , "-a" , "TextEdit" , , ] { } make ;