2007-09-20 18:09:08 -04:00
|
|
|
USING: definitions kernel parser words sequences math.parser
|
2007-12-09 11:48:47 -05:00
|
|
|
namespaces editors io.launcher windows.shell32 io.files
|
2008-02-12 13:14:57 -05:00
|
|
|
io.paths strings unicode.case ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: editors.editpadpro
|
|
|
|
|
2007-12-09 11:48:47 -05:00
|
|
|
: editpadpro-path
|
|
|
|
\ editpadpro-path get-global [
|
2008-03-19 20:15:32 -04:00
|
|
|
program-files "JGsoft" append-path
|
2008-02-25 04:38:52 -05:00
|
|
|
t [ >lower "editpadpro.exe" tail? ] find-file
|
2007-12-09 11:48:47 -05:00
|
|
|
] unless* ;
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
: editpadpro ( file line -- )
|
2008-01-24 02:50:40 -05:00
|
|
|
[
|
|
|
|
editpadpro-path , "/l" swap number>string append , ,
|
|
|
|
] { } make run-detached drop ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
[ editpadpro ] edit-hook set-global
|