mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-07 03:04:26 +08:00
10 lines
697 B
VimL
10 lines
697 B
VimL
" TODO: create cssWritingModeProp group and cssWritingModeAttr group
|
|
syn match cssFontProp contained "\<text-\(orientation\|combine-\(horizontal\|mode\)\)\>"
|
|
syn match cssFontProp contained "\<writing-mode\>"
|
|
syn keyword cssFontAttr contained before after alpha latin alphanumeric isolate plaintext
|
|
syn match cssFontAttr contained "\<\(\(min\|max\|fit\)-content\|fill-available\)\>"
|
|
syn match cssFontAttr contained "\<ascii-digits\>"
|
|
syn match cssFontAttr contained "\<\(\(no-\)\=compress\|use-glyphs\)\>"
|
|
syn match cssFontAttr contained "\<\(upright\(-right\)\=\|sideways\(-right\|-left\)\=\|use-glyph-orientation\)\>"
|
|
syn match cssFontAttr contained "\<\(horizontal-tb\|vertical-\(rl\|lr\)\)\>"
|