factor/libs/emacs/emacs.factor

17 lines
323 B
Factor

REQUIRES: libs/process ;
USING: definitions kernel parser words sequences math process
namespaces tools ;
IN: emacs
: emacsclient ( file line -- )
[ "emacsclient --no-wait +" % # " " % % ] "" make run-process ;
: emacs ( word -- )
where first2 emacsclient ;
[ emacsclient ] edit-hook set-global
PROVIDE: libs/emacs ;