mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-08 11:34:45 +08:00
Add 'numeric' value for 'system' descriptor
With Vim 7.4.640, the keyword seems not to be treated by neither Vim's css.vim nor this extension. Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
This commit is contained in:
committed by
Kyo Nagashima
parent
21b74dc4a3
commit
cd20896c4e
@@ -4,9 +4,9 @@ syn keyword cssGeneratedContentProp contained system negative prefix suffix rang
|
|||||||
syn match cssGeneratedContentProp contained "\<\(additive-\)\=symbols\>"
|
syn match cssGeneratedContentProp contained "\<\(additive-\)\=symbols\>"
|
||||||
syn match cssGeneratedContentProp contained "\<speak-as\>"
|
syn match cssGeneratedContentProp contained "\<speak-as\>"
|
||||||
syn keyword cssGeneratedContentAttr contained cyclic symbolic additive extends bullets numbers words
|
syn keyword cssGeneratedContentAttr contained cyclic symbolic additive extends bullets numbers words
|
||||||
|
syn match cssGeneratedContentAttr contained "\<\(ethiopic-\)\=numeric\>"
|
||||||
syn match cssGeneratedContentAttr contained "\<cjk-decimal\>"
|
syn match cssGeneratedContentAttr contained "\<cjk-decimal\>"
|
||||||
syn match cssGeneratedContentAttr contained "\<disclosure-\(open\|closed\)\>"
|
syn match cssGeneratedContentAttr contained "\<disclosure-\(open\|closed\)\>"
|
||||||
syn match cssGeneratedContentAttr contained "\<simp-chinese-\(in\)\=formal\>"
|
syn match cssGeneratedContentAttr contained "\<simp-chinese-\(in\)\=formal\>"
|
||||||
syn match cssGeneratedContentAttr contained "\<trad-chinese-\(in\)\=formal\>"
|
syn match cssGeneratedContentAttr contained "\<trad-chinese-\(in\)\=formal\>"
|
||||||
syn match cssGeneratedContentAttr contained "\<ethiopic-numeric\>"
|
|
||||||
syn region cssFunction contained matchgroup=cssFunctionName start="\<symbols\s*(" end=")" oneline keepend
|
syn region cssFunction contained matchgroup=cssFunctionName start="\<symbols\s*(" end=")" oneline keepend
|
||||||
|
|||||||
@@ -121,6 +121,7 @@
|
|||||||
display: symbols("*" "\2020" "\2021" "\A7");
|
display: symbols("*" "\2020" "\2021" "\A7");
|
||||||
display: bullets;
|
display: bullets;
|
||||||
display: words;
|
display: words;
|
||||||
|
display: numeric;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display {
|
.display {
|
||||||
|
|||||||
@@ -131,6 +131,7 @@
|
|||||||
display: symbols("*" "\2020" "\2021" "\A7");
|
display: symbols("*" "\2020" "\2021" "\A7");
|
||||||
display: bullets;
|
display: bullets;
|
||||||
display: words;
|
display: words;
|
||||||
|
display: numeric;
|
||||||
}
|
}
|
||||||
|
|
||||||
.display {
|
.display {
|
||||||
|
|||||||
Reference in New Issue
Block a user