How do I load the edited .emacs file without restarting Emacs?

link|improve this question

62% accept rate
feedback

6 Answers

up vote 11 down vote accepted

I usually use M-x load-file. But be aware that some initialization is only done the first time through. Things like libraries that set their defaults when loaded, but don't get reloaded the second time through. Its always a good idea to start up emacs from scratch as a final check that everything works ok.

link|improve this answer
feedback

M-x eval-buffer

link|improve this answer
2  
::Cries, deletes own post, and upvotes:: – dmckee Oct 3 '08 at 16:26
feedback

M-x load-file and then choose the .emacs file should also work

link|improve this answer
feedback

Open the .emacs file, select its contents and hit C-x,C-e

link|improve this answer
feedback

In the scratch buffer:

(load ".emacs") ctrl-j

link|improve this answer
feedback

you can use C-x-C-e which will evaluate the buffer, but make sure the cursor is at the last parenthesis of the .emacs code

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.