16 lines
415 B
Factor
16 lines
415 B
Factor
|
USING: editors io.files io.launcher kernel math.parser
|
||
|
namespaces sequences windows.shell32 ;
|
||
|
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
|