Paste: nedit

Author: vegai
Mode: factor
Date: Sat, 4 Oct 2008 17:37:42
Plain Text |
USING: io.launcher kernel sequences math.parser namespaces editors make ;
IN: editors.nedit

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

[ nedit-client ] edit-hook set-global

New Annotation

Summary:
Author:
Mode:
Body: