factor/extra/editors/emacs/emacs.factor

15 lines
320 B
Factor

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