factor/basis/editors/notepad2/notepad2.factor

19 lines
494 B
Factor

USING: editors io.files io.launcher kernel math.parser
namespaces sequences windows.shell32 make io.pathnames ;
IN: editors.notepad2
SINGLETON: notepad2
notepad2 editor-class set-global
: notepad2-path ( -- path )
\ notepad2-path get-global [
windows-directory "system32\\notepad.exe" append-path
[ "notepad.exe" ] unless*
] unless* ;
M: notepad2 editor-command ( file line -- command )
[
notepad2-path ,
"/g" , number>string , ,
] { } make ;