Skip to content

Instantly share code, notes, and snippets.

@mrkaspa
Created August 19, 2016 13:49
Show Gist options
  • Save mrkaspa/493a569a44af987510b4cc379a4063d4 to your computer and use it in GitHub Desktop.
Save mrkaspa/493a569a44af987510b4cc379a4063d4 to your computer and use it in GitHub Desktop.
(defadvice switch-to-buffer (before save-buffer-now activate)
(when buffer-file-name (save-buffer)))
(defadvice other-window (before other-window-now activate)
(when buffer-file-name (save-buffer)))
(server-start)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment