How do I load the edited .emacs file without restarting Emacs?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
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. |
|||
|
|
|
M-x eval-buffer |
|||||
|
|
you can use |
|||
|
|
|
M-x load-file ~/.emacs eval-buffer when the .emacs file is opened eval-region when you want apply selected lines C-x C-e evaluates the preceding expression |
||||
|