From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Stefan Monnier " Newsgroups: gmane.emacs.help Subject: Re: Emacs configuration Date: 01 Oct 2002 10:57:56 -0400 Organization: Yale University Sender: help-gnu-emacs-admin@gnu.org Message-ID: <5lptuujjez.fsf@rum.cs.yale.edu> References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1033485475 25556 127.0.0.1 (1 Oct 2002 15:17:55 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 1 Oct 2002 15:17:55 +0000 (UTC) Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17wOmU-0006dW-00 for ; Tue, 01 Oct 2002 17:17:51 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17wOmo-0008ST-00; Tue, 01 Oct 2002 11:18:10 -0400 Original-Path: shelby.stanford.edu!nntp.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!news.ycc.yale.edu!rum.cs.yale.edu!rum.cs.yale.edu Original-Newsgroups: gnu.emacs.help Original-Lines: 20 Original-NNTP-Posting-Host: rum.cs.yale.edu User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 X-Original-NNTP-Posting-Host: rum.cs.yale.edu X-Original-Trace: 1 Oct 2002 10:57:57 -0400, rum.cs.yale.edu Original-Xref: nntp.stanford.edu gnu.emacs.help:105594 Original-To: help-gnu-emacs@gnu.org Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:2142 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:2142 >>>>> "arthur" == arthur chereau 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