serras / emacs-haskell-tutorial

Tutorial on setting up Emacs to do Haskell programming
690 stars 100 forks source link

Avoid undue Emacs restarts #1

Closed aaron-em closed 10 years ago

aaron-em commented 10 years ago

There's no need to restart Emacs for a simple ~/.emacs change; M-x eval-buffer RET almost always suffices, which is especially worth knowing once one's Emacs config grows to the extent that running the daemon is more efficient than starting a new session every time you need a frame -- something which can happen quite quickly when you install a lot of *ELPA packages; even on a 2.8GHz machine with an SSD and 16GB of RAM, my own Emacs takes well over ten seconds to start up and shake itself down into a usable state.

(Oh, and thanks for the tip about company-mode! I've been looking for a good completion tool, and might just end up using that one.)

serras commented 10 years ago

Thanks for the help!