16 lines
420 B
Factor
16 lines
420 B
Factor
USING: editors io.files io.launcher kernel math.parser
|
|
namespaces sequences windows.shell32 make ;
|
|
IN: editors.editplus
|
|
|
|
: editplus-path ( -- path )
|
|
\ editplus-path get-global [
|
|
program-files "\\EditPlus 2\\editplus.exe" append-path
|
|
] unless* ;
|
|
|
|
: editplus ( file line -- )
|
|
[
|
|
editplus-path , "-cursor" , number>string , ,
|
|
] { } make run-detached drop ;
|
|
|
|
[ editplus ] edit-hook set-global
|