Question

I'd like to save, for instance, my find-file and Meta-X history in Emacs' mini-buffer so I can recall commands later in a different session.

Was it helpful?

Solution

As Trey Jackson said, you want to put this:

(savehist-mode 1)

in your Emacs start up file, then restart Emacs. (Calling it interactively will stomp on your current mini-buffer history, so you may not want to do that.)

It's also worth pointing out that you can persist other variables across sessions by adding them to savehist-additional-variables, like so:

(setq savehist-additional-variables '(kill-ring search-ring regexp-search-ring))

You may also want to customize savehist-file, to pick the location where Emacs saves all this stuff:

(setq savehist-file "~/.emacs.d/tmp/savehist")

OTHER TIPS

M-x savehist-mode

or

(savehist-mode 1)

(available in Emacs as of 22.1)

If you have an Emacs version older than 22, you can use this instead:

http://www.emacswiki.org/emacs/download/savehist-20%2b.el

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