branch: elpa/sass-mode commit 26dff5fd9afa1a5ffec62ba42913c71355232355 Merge: 242b0ea 658f745 Author: Nathan Weizenbaum <nex...@gmail.com> Commit: Nathan Weizenbaum <nex...@gmail.com>
Merge pull request #12 from purcell/master 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..853d414 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.")