File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
syn match cssFontProp contained " \< break-\( after\| before\| inside\)\> "
2
2
syn match cssFontProp contained " \< box-decoration-break\> "
3
+ syn match cssFontAttr contained " \<\( avoid-\)\= column\> "
Original file line number Diff line number Diff line change 1
1
syn keyword cssFontProp contained columns
2
2
syn match cssFontProp contained " \< column-\( count\| fill\| rule\( -\( color\| style\| width\)\)\=\| span\| width\)\> "
3
- syn keyword cssFontAttr contained balance
4
- syn match cssFontAttr contained " \<\( avoid-\)\= column\> "
3
+ syn match cssFontAttr contained " \< balance\( -all\)\=\> "
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ syn include @htmlCss syntax/css/css-line-grid-1.vim
22
22
syn include @htmlCss syntax/css/css-lists-3.vim
23
23
syn include @htmlCss syntax/css/css-logical-1.vim
24
24
syn include @htmlCss syntax/css/css-masking-1.vim
25
+ syn include @htmlCss syntax/css/css-multicol-1.vim
25
26
syn include @htmlCss syntax/css/css-overflow-3.vim
26
27
syn include @htmlCss syntax/css/css-overflow-4.vim
27
28
syn include @htmlCss syntax/css/css-page-floats-3.vim
@@ -58,7 +59,6 @@ syn include @htmlCss syntax/css/css3-color.vim
58
59
syn include @htmlCss syntax/css/css3-conditional.vim
59
60
syn include @htmlCss syntax/css/css3-exclusions.vim
60
61
syn include @htmlCss syntax/css/css3-images.vim
61
- syn include @htmlCss syntax/css/css3-multicol.vim
62
62
syn include @htmlCss syntax/css/css3-namespace.vim
63
63
syn include @htmlCss syntax/css/css3-page.vim
64
64
syn include @htmlCss syntax/css/css3-speech.vim
Original file line number Diff line number Diff line change 76
76
}
77
77
78
78
.break-3 {
79
- break-after : auto ;
79
+ break-after : avoid-column ;
80
80
break-before : auto;
81
81
break-inside : auto;
82
82
box-decoration-break : auto;
500
500
offset : auto;
501
501
}
502
502
503
- .multicol {
503
+ .multicol-1 {
504
504
columns : column;
505
505
column-count : balance;
506
- column-fill : avoid-column ;
506
+ column-fill : balance-all ;
507
507
column-rule : auto;
508
508
column-rule-color : auto;
509
509
column-rule-style : auto;
Original file line number Diff line number Diff line change 91
91
</ style >
92
92
< style >
93
93
.break-3 {
94
- break-after : auto ;
94
+ break-after : avoid-column ;
95
95
break-before : auto;
96
96
break-inside : auto;
97
97
box-decoration-break : auto;
543
543
}
544
544
</ style >
545
545
< style >
546
- .multicol {
546
+ .multicol-1 {
547
547
columns : column;
548
548
column-count : balance;
549
- column-fill : avoid-column ;
549
+ column-fill : balance-all ;
550
550
column-rule : auto;
551
551
column-rule-color : auto;
552
552
column-rule-style : auto;
You can’t perform that action at this time.
0 commit comments