Path: utzoo!attcan!uunet!talos!kjones From: kjones@talos.pm.com (Kyle Jones) Newsgroups: comp.emacs Subject: Re: saving emacs buffers Message-ID: <1990Jul5.135200.16328@talos.pm.com> Date: 5 Jul 90 13:52:00 GMT References: <9007012247.AA23581@chaos.cs.brandeis.edu> Lines: 22 Dylan Kaufman writes: > I once heard something about the possibility of saving the current > state of the buffers in emacs so that at a later time you can restore > that state and continue working. > > Is this in fact possible? If so, could someone please > describe how? You need to use the saveconf.el package that was first distributed with Emacs version 18.52. Put this in your .emacs file: (require 'saveconf) (setq auto-save-and-recover-context t) (setq save-buffer-context t) (if (null (cdr command-line-args)) (setq inhibit-startup-message (recover-context))) Emacs will resume visiting the buffers you were last editing in the current directory if you invoke it (Emacs) without any arguments.