diff options
author | David Robillard <d@drobilla.net> | 2016-02-05 20:51:36 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-02-05 20:51:36 -0500 |
commit | 73debcdd2ec96dd9c4ec8d375759f17a192a6c4f (patch) | |
tree | 6bfbdaceeb82a0e851caa47e2a1e16888fa451d2 | |
parent | a23b2996d6a813335fd6a1e9867bd0f20ed18994 (diff) | |
download | dotfiles-73debcdd2ec96dd9c4ec8d375759f17a192a6c4f.tar.gz dotfiles-73debcdd2ec96dd9c4ec8d375759f17a192a6c4f.tar.bz2 dotfiles-73debcdd2ec96dd9c4ec8d375759f17a192a6c4f.zip |
Remove slow Maven regexp that bogs down compiling
-rw-r--r-- | emacs.d/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 5bba424..d2d89ec 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -197,6 +197,10 @@ (setq split-width-threshold 0) (setq compilation-finish-functions 'compile-autoclose) +;; Remove slow Maven regexp that makes the compilation buffer clunky +(setq compilation-error-regexp-alist + (delete 'maven compilation-error-regexp-alist)) + ;;; Key bindings (global-set-key (kbd "\C-m") 'newline-and-indent) |