2011-10-31 14:53:07 -04:00
|
|
|
USING: arrays editors io.standard-paths kernel namespaces ;
|
2007-12-05 02:21:52 -05:00
|
|
|
IN: editors.wordpad
|
|
|
|
|
2011-10-31 14:53:07 -04:00
|
|
|
SINGLETON: wordpad
|
|
|
|
wordpad editor-class set-global
|
|
|
|
|
2007-12-09 11:49:39 -05:00
|
|
|
: wordpad-path ( -- path )
|
|
|
|
\ wordpad-path get [
|
2011-10-31 14:53:07 -04:00
|
|
|
{ "Windows NT\\Accessories" } "wordpad.exe" find-in-applications
|
2007-12-09 11:49:39 -05:00
|
|
|
] unless* ;
|
|
|
|
|
2011-10-31 14:53:07 -04:00
|
|
|
M: wordpad editor-command ( file line -- command )
|
|
|
|
drop [ wordpad-path ] dip 2array ;
|