factor/basis/editors/ted-notepad/ted-notepad.factor

18 lines
502 B
Factor
Raw Normal View History

2007-12-09 11:57:35 -05:00
USING: editors io.files io.launcher kernel math.parser
2008-12-15 22:45:18 -05:00
namespaces sequences io.directories.search.windows make ;
2007-12-04 00:44:21 -05:00
IN: editors.ted-notepad
: ted-notepad-path ( -- path )
2007-12-09 11:57:35 -05:00
\ ted-notepad-path get-global [
"TED Notepad" t [ "TedNPad.exe" tail? ] find-in-program-files
[ "TedNPad.exe" ] unless*
2007-12-09 11:57:35 -05:00
] unless* ;
2007-12-04 00:44:21 -05:00
: ted-notepad ( file line -- )
[
ted-notepad-path ,
number>string "/l" prepend , ,
2008-01-24 02:50:40 -05:00
] { } make run-detached drop ;
2007-12-04 00:44:21 -05:00
[ ted-notepad ] edit-hook set-global