Skip to content

Instantly share code, notes, and snippets.

@bergmark
Last active August 29, 2015 14:01
Show Gist options
  • Save bergmark/80140bdfb7bc14eb6f4f to your computer and use it in GitHub Desktop.
Save bergmark/80140bdfb7bc14eb6f4f to your computer and use it in GitHub Desktop.
(add-hook 'haskell-mode-hook
(lambda () (add-hook 'before-save-hook 'kill-warnings-buffer nil 'make-it-local)))
(defun kill-warnings-buffer ()
(when (get-buffer "*Warnings*")
(kill-buffer "*Warnings*")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment