mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-07 11:14:25 +08:00
6 lines
306 B
VimL
6 lines
306 B
VimL
if !hlexists('cssShapesProp')
|
|
syn match cssFontProp contained "\<shape-\(outside\|image-threshold\|margin\)\>"
|
|
syn match cssFontAttr contained "\<margin-box\>"
|
|
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(inset\|circle\|ellipse\|polygon\)\s*(" end=")" oneline keepend
|
|
endif
|