How can I reload .emacs after changing it?

appshare.co picture appshare.co · Apr 5, 2010 · Viewed 128.7k times · Source

How can I get Emacs to reload all my definitions that I have updated in .emacs without restarting Emacs?

Answer

Bryan Oakley picture Bryan Oakley · Apr 5, 2010

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-xC-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.