mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-06 18:54:25 +08:00
This changes generalize gap specific properties for flexbox, grid, and multicol. So, move these. See also: http://www.w3.org/TR/2017/WD-css-align-3-20170906/
10 lines
616 B
VimL
10 lines
616 B
VimL
syn match cssFontProp contained "\<grid-template\(-\(columns\|rows\|areas\)\)\=\>"
|
|
syn match cssFontProp contained "\<grid-auto-\(columns\|rows\|flow\)\>"
|
|
syn match cssFontProp contained "\<grid-\(row\|column\)\(-\(start\|end\)\)\=\>"
|
|
syn match cssFontProp contained "\<grid-area\>"
|
|
syn keyword cssFontAttr contained grid dense span
|
|
syn match cssFontAttr contained "\<inline-grid\>"
|
|
syn match cssFontAttr contained "\<auto-flow\>"
|
|
syn match cssValueNumber contained "[01]\(.\d\+\)\=fr"
|
|
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(minmax\|fit-content\|repeat\)\s*(" end=")" oneline keepend
|