factor/basis/editors/wordpad/wordpad.factor

14 lines
365 B
Factor
Raw Normal View History

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