factor/basis/editors/emeditor/emeditor.factor

19 lines
508 B
Factor
Raw Normal View History

USING: editors io.files io.launcher kernel math.parser
2008-12-15 22:45:18 -05:00
namespaces sequences windows.shell32 make
io.directories.search.windows ;
2007-12-04 00:31:03 -05:00
IN: editors.emeditor
SINGLETON: emeditor
emeditor editor-class set-global
2007-12-09 11:56:47 -05:00
: emeditor-path ( -- path )
\ emeditor-path get-global [
"EmEditor" [ "EmEditor.exe" tail? ] find-in-program-files
[ "EmEditor.exe" ] unless*
2007-12-09 11:56:47 -05:00
] unless* ;
M: emeditor editor-command ( file line -- command )
2007-12-04 00:31:03 -05:00
[
2008-01-24 02:50:40 -05:00
emeditor-path , "/l" , number>string , ,
] { } make ;