Paste: nedit hook

Author: vegai
Mode: factor
Date: Sat, 4 Oct 2008 07:49:05
Plain Text |
USING: definitions io.launcher kernel parser words sequences math
math.parser namespaces editors make ;
IN: editors.nedit

: nedit ( file line -- )
    [
        "nedit" ,
        "-line " swap number>string append ,
        ,
    ] { } make try-process ;

[ nedit ] edit-hook set-global

New Annotation

Summary:
Author:
Mode:
Body: