I have read the page in Emacs wiki which contains a list of session manager plugins. But after trying all of these, I am still not happy with any of them.

By comparison, the VIM session manager saves and loads sessions by name, which is one of the most important features for me.

In particular, I want a session manager for Emacs that:

  • Managing sessions by name
  • Saving tabs, screens, frames etc..

I'm trying to use Emacs because it has got really good features but a good session manager is important to my workflow.


Related:

link|improve this question

50% accept rate
5  
It would help if you could list the ones you tried and didn't like. – Nifle May 11 '09 at 12:56
1  
+1 Nifle, and you should include a link on "the page in emacs wiki", so your readers can see what you're talking about. A link to the appropriate VIM docs would help too. – dmckee May 11 '09 at 16:26
3  
OK. I took a crack at cleaning this up. The thing is, hevalbaranov, that you're asking people to help you, so you might consider putting a little more work into making it easy for them to do so... – dmckee May 11 '09 at 17:01
@Brian: Damn. I suck. Thanks. – dmckee May 11 '09 at 19:46
feedback

4 Answers

up vote 22 down vote accepted

Since you don't like the base functionality of desktop.el, throw some elisp around it:

(defvar my-desktop-session-dir
  (concat (getenv "HOME") "/.emacs.d/desktop-sessions/")
  "*Directory to save desktop sessions in")

(defvar my-desktop-session-name-hist nil
  "Desktop session name history")

(defun my-desktop-save (&optional name)
  "Save desktop with a name."
  (interactive)
  (unless name
    (setq name (my-desktop-get-session-name "Save session as: ")))
  (make-directory (concat my-desktop-session-dir name) t)
  (desktop-save (concat my-desktop-session-dir name) t))

(defun my-desktop-read (&optional name)
  "Read desktop with a name."
  (interactive)
  (unless name
    (setq name (my-desktop-get-session-name "Load session: ")))
  (desktop-read (concat my-desktop-session-dir name)))

(defun my-desktop-get-session-name (prompt)
  (completing-read prompt (and (file-exists-p my-desktop-session-dir)
                               (directory-files my-desktop-session-dir))
                   nil nil nil my-desktop-session-name-hist))

EDIT:

Getting some votes, so add niceties like completing-read and history

link|improve this answer
Thanks, I was looking for something like this and this is perfect. This is pretty awesome for an emacs noob like me. – Ibrahim May 12 '09 at 20:27
@Ibrahim: Updated to make things a little nicer – scottfrazer May 12 '09 at 23:04
Genius solution, is there anything you can't do with a bit of elisp? ;p – omouse Apr 18 '11 at 17:20
I am not able to retrieve the window configurations. Does this lisp code support it. – Talespin_Kit Oct 12 '11 at 22:10
Exactly what I was looking for. Thank you :) – Vicky Chijwani Nov 22 '11 at 2:35
feedback

Already answered:

Explaining your requirements in detail allow us to provide a more specific solution for you.

Edit

Desktop mode allows you to have more than one sessions—saved desktops are not name but directory based.

From chapter Saving Emacs Sessions:

You can save the current desktop and reload one saved in another directory by typing M-x desktop-change-dir.

Furthermore, desktop-path variable allows you to define a list of directories to search for the saved desktops.

Edit 2

The Elisp code snippet sent by scottfrazer allows you to name your session, as in the background it translates the name to the proper directory name for Desktop mode.

link|improve this answer
I already tried desktop.el (as I said 4 times), it does not support saving sessions by names. – sid3k May 11 '09 at 13:13
@Török Gábor: He claims to have tried the choice list therein, and is asking for a very particular feature. The formulation of the question was marginal, and the tone passive-aggressive, but the question seems to be unique. – dmckee May 11 '09 at 17:00
@dmckee: yes, the comment to my answer clarified it, that's why I tried to point out then that Emacs Desktop handles multiple sessions, it just doesn't separate them by names but directories. – Török Gábor May 11 '09 at 19:10
feedback

Try Emacs desktop. Go here

link|improve this answer
1  
I already tried desktop.el (as I said 4 times), it does not support saving sessions by names. – sid3k May 11 '09 at 13:13
4  
Where did you say you used desktop.el? – Nifle May 11 '09 at 13:42
1  
"I tried all of the sessionmanager plugins for emacs that is written in the wiki but I saw that most useful of them doesn't save frames, doesn't use session names and all of them have really bad names." – sid3k May 11 '09 at 14:01
feedback

Use different desktops by bookmarking them. Simple, quick to use -- hit a key and presto, different desktop. You can even cycle among them if you like.

  • Use C-x p K (by default) to set a desktop bookmark. You are prompted for the desktop file location and the bookmark name to use.

  • Use C-x j K (by default) to jump to a bookmarked desktop. You are prompted for the bookmark name (with completion).

You need Bookmark+ to do this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.