How can I make emacsclient just open a window for an existing emacs daemon without opening a new file

StackOverflow https://stackoverflow.com/questions/3237832

  •  14-09-2020
  •  | 
  •  

Question

I use an emacs daemon to preserve my emacs session even if I have to reboot the machine that I run my X server on or if I want to access the same session from a different machine. This works very well but when restoring a session I'd quite like to just run "emacsclient --create-frame --no-wait" to connect to the daemon without opening a new file. It won't let me get away without specifying a filename.

I've tried using --eval to execute a function rather than open a file but the window just goes away when the evaluation is complete.

(Emacs 23.1 via backports on Debian GNU/Linux 5.0.)

Was it helpful?

Solution

From the help provided by emacsclient, you have a few options. First, is the one mentioned already which is emacsclient -c. That will try to create a frame associated with the emacs daemon. The advantage to this is that if DISPLAY is not set, then it will open emacs in the terminal.

Which brings us to the next best option (especially if you are logging in remotely): emacsclient -t which forces emacs to open up in terminal mode even if DISPLAY is set.

Also keep in mind that you can set the display from the command-line as well. I use this often when logging in remotely from VNC. The full command would be emacsclient -d DISPLAY -c

OTHER TIPS

emacsclient -c works for me.

emacsclient -n -e "(make-frame)"

The -n flag means that the emacsclient doesn't wait, and the emacs instance doesn't destroy the frame.

If you are using emacs from the command line, you might also want to consider emacsclient -t

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top