2008-09-11 21:15:59 -04:00
|
|
|
USING: definitions io.launcher kernel math math.parser parser
|
|
|
|
namespaces prettyprint editors make ;
|
|
|
|
IN: editors.textedit
|
|
|
|
|
2011-10-31 14:53:07 -04:00
|
|
|
SINGLETON: textedit
|
|
|
|
textedit editor-class set-global
|
2008-09-11 21:15:59 -04:00
|
|
|
|
2011-10-31 14:53:07 -04:00
|
|
|
M: textedit editor-command ( file line -- command )
|
|
|
|
drop
|
2015-08-06 18:05:12 -04:00
|
|
|
[ "open" , "-a" , "TextEdit" , , ] { } make ;
|