mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-07 03:04:26 +08:00
6 lines
390 B
VimL
6 lines
390 B
VimL
" TODO: create cssTransitionProp group and cssTransitionAttr group
|
|
syn match cssFontProp contained "\<transition\(-\(delay\|duration\|property\|timing-function\)\)\=\>"
|
|
syn keyword cssFontAttr contained linear
|
|
syn match cssFontAttr contained "\<ease\(-\(in\|out\|in-out\)\)\=\>"
|
|
syn region cssFunction contained matchgroup=cssFunctionName start="\<cubic-bezier\s*(" end=")" oneline keepend
|