2006-08-16 04:45:59 -04:00
|
|
|
REQUIRES: process ;
|
|
|
|
|
2006-08-25 00:25:43 -04:00
|
|
|
USING: definitions kernel parser words sequences math process
|
|
|
|
namespaces ;
|
2006-08-16 04:45:59 -04:00
|
|
|
|
|
|
|
IN: emacs
|
|
|
|
|
|
|
|
: emacsclient ( file line -- )
|
|
|
|
number>string "emacsclient --no-wait +" swap append " " rot append3 system ;
|
|
|
|
|
|
|
|
: emacs ( word -- )
|
2006-08-25 00:07:54 -04:00
|
|
|
where first2 emacsclient ;
|
|
|
|
|
|
|
|
[ emacsclient ] edit-hook set
|
2006-08-16 04:45:59 -04:00
|
|
|
|
|
|
|
PROVIDE: emacs ;
|