A. N. writes: > How can I have JDE/emacs remember the list of the > files that were open when I exit the emacs.. and > reopen all the files when I restart emacs? >
Not exactly what you want, but with Emacs 21 you can use recentf to have Emacs remember the list of recently opened files. You can then see them from the "File | Open Recent" menu, or in a buffer via 'ALT-x recentf-open-files'. Put this in your .emacs to use: (require 'recentf) (recentf-mode 1) I also do this: (global-set-key "\C-cr" 'recentf-open-files) Steve Molitor
