2007-09-20 18:09:08 -04:00
|
|
|
USING: definitions io.launcher kernel parser words sequences math
|
2008-09-12 11:36:00 -04:00
|
|
|
math.parser namespaces editors make ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: editors.emacs
|
|
|
|
|
|
|
|
: emacsclient ( file line -- )
|
|
|
|
[
|
2008-01-24 02:50:40 -05:00
|
|
|
"emacsclient" ,
|
|
|
|
"--no-wait" ,
|
|
|
|
"+" swap number>string append ,
|
|
|
|
,
|
2008-02-08 22:15:29 -05:00
|
|
|
] { } make try-process ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: emacs ( word -- )
|
|
|
|
where first2 emacsclient ;
|
|
|
|
|
|
|
|
[ emacsclient ] edit-hook set-global
|
|
|
|
|