2011-10-31 14:53:07 -04:00
|
|
|
USING: combinators.short-circuit editors io.standard-paths
|
|
|
|
kernel make namespaces ;
|
2008-12-08 21:11:24 -05:00
|
|
|
IN: editors.editpadlite
|
|
|
|
|
2011-10-31 14:53:07 -04:00
|
|
|
SINGLETON: editpadlite
|
|
|
|
editpadlite editor-class set-global
|
|
|
|
|
2008-12-08 21:11:24 -05:00
|
|
|
: editpadlite-path ( -- path )
|
2015-06-01 17:39:30 -04:00
|
|
|
\ editpadlite-path get [
|
2011-10-31 14:53:07 -04:00
|
|
|
{
|
|
|
|
[ { "Just Great Software" "JGsoft" } "editpadlite.exe" find-in-applications ]
|
|
|
|
[ { "Just Great Software" "JGsoft" } "editpadlite7.exe" find-in-applications ]
|
|
|
|
[ "editpadlite7.exe" ]
|
|
|
|
} 0||
|
2008-12-08 21:11:24 -05:00
|
|
|
] unless* ;
|
|
|
|
|
2011-10-31 14:53:07 -04:00
|
|
|
M: editpadlite editor-command
|
|
|
|
drop
|
|
|
|
[ editpadlite-path , , ] { } make ;
|