branch: elpa/sass-mode commit c0147d2e0c6c00149b49ab9e51da631fa1d621d6 Author: Steve Purcell <st...@sanityinc.com> Commit: Steve Purcell <st...@sanityinc.com>
Don't indent after "attr: value" lines (fixes #5) --- sass-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/sass-mode.el b/sass-mode.el index 11d8993..d8bdc94 100644 --- a/sass-mode.el +++ b/sass-mode.el @@ -48,6 +48,7 @@ '("^.*,$" ;; Continued selectors "^ *@\\(extend\\|debug\\|warn\\|include\\|import\\)" ;; Single-line mixins "^ *[$!]" ;; Variables + "^ *[[:alnum:]]+ *:" ;; Plain attribute values ) "A list of regexps that match lines of Sass that couldn't have text nested beneath them.")