I am new to emacs and I am playing around with the .emacs file. How can I get it to reload all my definitions that I have updated in.emacs 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.
|
|
you can use the command load-file (M-x load-file, then press return twice to accept the default filename, which is the current file being edited). You can also just move the point to the end of any sexp and press c-x c-e to execute just that sexp. Usually it's not necessary to reload the whole file if you're just changing a line or two. |
|||||||||
|
|
You can usually just re-evaluate the changed region. Mark the region of ~/.emacs that you've changed, and then use |
|||||||||||
|