From 8ff9929af28fe7650481f29d5d393531fef42477 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 2 Dec 2016 14:40:23 +0100 Subject: Add SCSS error regexp to compilation buffer --- emacs/.emacs.d/init/oni-css-mode-init.org | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/emacs/.emacs.d/init/oni-css-mode-init.org b/emacs/.emacs.d/init/oni-css-mode-init.org index c683af0..e5531e3 100644 --- a/emacs/.emacs.d/init/oni-css-mode-init.org +++ b/emacs/.emacs.d/init/oni-css-mode-init.org @@ -27,3 +27,21 @@ as pretty colors. #+BEGIN_SRC emacs-lisp (add-hook 'css-mode-hook 'rainbow-mode) #+END_SRC + +Add the scssc compiler's error message output to the compilation error +regexps. + +#+BEGIN_SRC emacs-lisp + (eval-when-compile (require 'compile)) + + (with-eval-after-load 'compile + (defvar oni:scss-error-regexp + (rx (and bol + (zero-or-more space) "on line " + (group (one-or-more digit)) " of " + (group (one-or-more (or word punct (syntax symbol)))) + eol))) + + (add-to-list 'compilation-error-regexp-alist + (list oni:scss-error-regexp 2 1 nil 2 2))) +#+END_SRC -- cgit v1.2.3-54-g00ecf