mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-07 03:04:26 +08:00
8 lines
572 B
VimL
8 lines
572 B
VimL
" TODO: create cssTransformsProp group and cssTransformsAttr group
|
|
syn match cssFontProp contained "\<backface-visibility\>"
|
|
syn match cssFontProp contained "\<perspective\(-origin\)\=\>"
|
|
syn match cssFontProp contained "\<transform\(-\(origin\|style\)\)\=\>"
|
|
syn keyword cssFontAttr contained flat
|
|
syn match cssFontAttr contained "\<preserve-3d\>"
|
|
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(matrix\(3d\)\=\|translate\(3d\|X\|Y\|Z\)\=\|scale\(3d\|X\|Y\|Z\)\=\|rotate\(3d\|X\|Y\|Z\)\=\|skew\(X\|Y\)\=\|perspective\)\s*(" end=")" oneline keepend
|