diff options
author | Simen Heggestøyl <simenheg@gmail.com> | 2020-05-10 14:44:26 +0200 |
---|---|---|
committer | Simen Heggestøyl <simenheg@gmail.com> | 2020-05-10 14:57:22 +0200 |
commit | 1efaa1d66b9bc51284c7cac4477f45c9bde4fcfb (patch) | |
tree | ba11ecbc24d94c76f0bd5171ef87237dc880352b /test/manual/indent/scss-mode.scss | |
parent | 2df2f787116a9b0f3907ffbf1027c2eab0804e7d (diff) | |
download | emacs-1efaa1d66b9bc51284c7cac4477f45c9bde4fcfb.tar.gz emacs-1efaa1d66b9bc51284c7cac4477f45c9bde4fcfb.tar.bz2 emacs-1efaa1d66b9bc51284c7cac4477f45c9bde4fcfb.zip |
Allow underscores in CSS variable names
* lisp/textmodes/css-mode.el (css-nmchar-re): Allow underscores in
variable names (and in identifiers in general).
* test/manual/indent/css-mode.css: Add some examples of variable names
with underscores in them.
* test/manual/indent/less-css-mode.less: Add some examples of variable
names with underscores in them.
* test/manual/indent/scss-mode.scss: Add some examples of variable
names with underscores in them.
Diffstat (limited to 'test/manual/indent/scss-mode.scss')
-rw-r--r-- | test/manual/indent/scss-mode.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/manual/indent/scss-mode.scss b/test/manual/indent/scss-mode.scss index a3dd41eeb47..189ec4e22ac 100644 --- a/test/manual/indent/scss-mode.scss +++ b/test/manual/indent/scss-mode.scss @@ -41,9 +41,13 @@ p.#{$name} var article[role="main"] { $toto: 500 !global; $var-with-default: 300 !default; + $var_with_underscores: #fff; + $_var-starting-with-underscore: none; float: left !important; width: 600px / 888px * 100%; height: 100px / 888px * 100%; + color: $var_with_underscores; + display: $_var-starting-with-underscore; } %placeholder { |