mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-29 19:48:19 +00:00
bc0e9e47b6
(css-mode-syntax-table): Use d style comment, to ease the scss case. (css-ident-re): Allow things like @-moz-keyframes. (scss--hash-re): New const. (css--font-lock-keywords): New function, extracted from css-font-lock-keywords. (css-font-lock-keywords): Use it. (scss-mode-syntax-table, scss-font-lock-keywords): New vars. (scss-smie--not-interpolation-p): New function. (css-smie--forward-token, css-smie--backward-token): Use it. (css-mode): Remove left-over code. * test/indent/scss-mode.scss: New file. * test/indent/css-mode.css: Add a few uneventful examples.
24 lines
157 B
CSS
24 lines
157 B
CSS
/* asdfasdf */
|
|
|
|
.xxx
|
|
{
|
|
}
|
|
|
|
article[role="main"] {
|
|
width: 60%;
|
|
}
|
|
|
|
/* asdfasdf */
|
|
@foo x2 {
|
|
bla:toto;
|
|
}
|
|
.x2
|
|
{
|
|
foo: bar;
|
|
bar: baz;
|
|
}
|
|
|
|
div.x3
|
|
{
|
|
}
|