add etexteditor

db4
Doug Coleman 2008-11-13 15:47:39 -06:00
parent 6d44e383b3
commit 069d5b1795
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1 @@
Kibleur Christophe

View File

@ -0,0 +1,18 @@
! Copyright (C) 2008 Kibleur Christophe.
! See http://factorcode.org/license.txt for BSD license.
USING: editors io.files io.launcher kernel math.parser
namespaces sequences windows.shell32 make ;
IN: editors.etexteditor
: etexteditor-path ( -- str )
\ etexteditor-path get-global [
program-files "e\\e.exe" append-path
] unless* ;
: etexteditor ( file line -- )
[
etexteditor-path ,
"-n" swap number>string append , ,
] { } make run-detached drop ;
[ etexteditor ] edit-hook set-global

View File

@ -0,0 +1 @@
etexteditor integration

View File

@ -0,0 +1 @@
unportable