/ Published in: Emacs Lisp
Reload the .emacs file with a minimum of effort, first saving histories with Persistent. Requires the Persistent.el module.
Expand |
Embed | Plain Text
;********************************************************** ;* ;* Reload the .emacs file with a minimum of effort, ;* first saving histories with Persistent ;* ;********************************************************** (defun reload () (interactive) "Reload c:/.emacs" (persistent-session-save-alist-to-file) (if (file-exists-p "~/.emacs") (load-file "~/.emacs")))
You need to login to post a comment.
