[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs configuration
From: |
Stefan Monnier <address@hidden> |
Subject: |
Re: Emacs configuration |
Date: |
01 Oct 2002 10:57:56 -0400 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 |
>>>>> "arthur" == arthur chereau <arthur.chereau@voila.fr> writes:
> - Is there any means of having only one emacs process running for all the
> emacs windows ? I mean, not like emacsclient or gnuserv, but when one
> calls emacs from the command line, having emacs spawn a new window like
> C-x 5 2 but no new process (to speed up the start). Then, is it possible
> to have multiple emacs windows that share the same process but don't share
> buffers (that is, "independant" windows) ?
You mean you want to have a separate window per buffer ?
Or do you mean `frame' ?
I use such a setup. For the emacsserver/emacsclient, I just use
(defun sm-server-visit-hook () (pop-to-buffer (current-buffer)))
(add-hook 'server-visit-hook 'sm-server-visit-hook)
it's not perfect because of some odd behavior of the server.el code,
but in Emacs-21.4 it will hopefully work better.
Stefan