mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-06 18:54:25 +08:00
7 lines
419 B
VimL
7 lines
419 B
VimL
" TODO: create cssFlexboxProp group and cssFlexboxAttr group
|
|
syn match cssFontProp contained "\<flex-\(align\|flow\|line-pack\|order\|pack\)\>"
|
|
syn keyword cssFontAttr contained flexbox row wrap
|
|
syn match cssFontAttr contained "\<inline-flexbox\>"
|
|
syn match cssFontAttr contained "\<\(row\|column\|wrap\)-reverse\>"
|
|
syn region cssFunction contained matchgroup=cssFunctionName start="\<flex\s*(" end=")" oneline keepend
|