[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ProjectCenter & Emacsclient editor setup?
From: |
DantoAC |
Subject: |
Re: ProjectCenter & Emacsclient editor setup? |
Date: |
Fri, 27 Jul 2012 12:01:24 -0400 |
El Fri, 27 Jul 2012 10:10:13 +0200
Csanyi Pal <csanyipal@gmail.com> escribió:
> Hi,
>
> I have installed gnustep from the
> deb http://coyote.octets.fr/pub/gnustep/packages/wheezy/amd64/ ./
>
> repository:
> ProjectCenter version 0.6.1
>
> I have the environment variable EDITOR setup in files:
> ~/.xinitrc
> and
> ~/.xsessionrc
> export ALTERNATE_EDITOR="emacs" EDITOR="emacsclient"
> VISUAL="emacsclient"
>
> I first start Emacs.
> I have setup in ~/.emacs file for emacs server-mode:
> '(server-mode t)
>
seems that when you start emacs, you're always starting it in server
mode.
you should start emacs in your xinitrc like following:
emacs --daemon
then, your environment variables could be:
ALTERNATE_EDITOR="emacs" #a new instance of emacs
EDITOR="emacsclient -t" # text-mode client, connects to running daemon
VISUAL="emacsclient -c" # x11 gtk client, connects to running daemon
> When I click in ProjectCenter in the main window browser on the
> Supporting Files/GNUmakefile,
>
> a new Emacs window appeares with the following message:
>
> Warning (server): Unable to start the Emacs server.
> There is an existing Emacs server, named "server".
> To start the server in this Emacs process, stop the existing
> server or call `M-x server-force-delete' to forcibly disconnect it.
>
> I expect that that instead of appearing a new Emacs window I can edit
> the GNUmakefile in the existing Emacs window.
>
> Why doesn't happen things this way?
>