On 09/11/15 20:59 PM, Tobias Frischholz wrote: >> I do this, too. I don't think Magit helps much, in fact I'd be better >> off writing functions for `emacs-startup-hook' and `kill-emacs-hook' >> that do my pushes and pulls for me. > > Those hooks sound very interesting to mean. Has anyone on this list > information in programming those?
The only thing I can think of that might be worth noting is that `kill-emacs-hook' is meant for non-interactive hooks. If you want your hook to query the user, you're supposed to use `kill-emacs-query-functions' instead. Eric