From 73debcdd2ec96dd9c4ec8d375759f17a192a6c4f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 5 Feb 2016 20:51:36 -0500 Subject: Remove slow Maven regexp that bogs down compiling --- emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) 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) -- cgit v1.2.1