Skip to content

Commit 69b55bf

Browse files
authored
Merge pull request #67 from hail2u/vim-8.1.1951
Follow changes in the default runtime files
2 parents 14f6b95 + 241f57e commit 69b55bf

File tree

7 files changed

+4
-30
lines changed

7 files changed

+4
-30
lines changed

after/syntax/css/cascade-3.vim

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
syn keyword cssFontProp all
2-
syn keyword cssCommonAttr contained initial unset

after/syntax/css/display-3.vim

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
syn keyword cssFontAttr contained contents discard
2-
syn match cssFontAttr contained "\<flow\(-root\)\=\>"
32
syn match cssBoxAttr contained "\<ruby\(-\(base\(-group\)\=\|text\(-group\)\=\)\)\=\>"

after/syntax/css/grid-1.vim

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
syn match cssFontProp contained "\<grid-template\>"
21
syn keyword cssFontAttr contained dense span
32
syn match cssFontAttr contained "\<auto-flow\>"
4-
syn match cssValueNumber contained "[01]\(.\d\+\)\=fr"
53
syn region cssFunction contained matchgroup=cssFunctionName start="\<\(minmax\|repeat\)\s*(" end=")" oneline keepend

after/syntax/css/text-3.vim

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
syn keyword cssTextProp contained hyphens
2-
syn match cssTextProp contained "\<line-break\>"
3-
syn match cssTextProp contained "\<overflow-wrap\>"
41
syn match cssTextProp contained "\<tab-size\>"
52
syn match cssTextProp contained "\<text-align-all\>"
6-
syn keyword cssTextAttr contained manual loose strict hanging anywhere
3+
syn keyword cssTextAttr contained loose strict hanging anywhere
74
syn match cssTextAttr contained "\<match-parent\>"
85
syn match cssTextAttr contained "\<each-line\>"
96
syn match cssTextAttr contained "\<full-width\>"

after/syntax/css/values-3.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
syn match cssValueLength contained "[-+]\=\d\+\(\.\d*\)\=\(ch\|vw\|vh\|vmin\|vmax\|q\)"
1+
syn match cssValueLength contained "[-+]\=\d\+\(\.\d*\)\=\(ch\|q\)"
22
syn match cssValueAngle contained "[-+]\=\d\+\(\.\d*\)\=turn"
3-
syn region cssFunction contained matchgroup=cssFunctionName start="\<calc\s*(" end=")" oneline keepend

after/syntax/css/variables-1.vim

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
syn match cssFontProp contained "\<--[A-Za-z_][A-Za-z0-9_-]\+\>"
2-
syn region cssFunction contained matchgroup=cssFunctionName start="\<var\s*(" end=")" oneline keepend

test/test.css

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@
7272
}
7373

7474
.cascade-3 {
75-
all: auto;
76-
display: initial;
77-
display: unset;
75+
display: auto;
7876
}
7977

8078
.cascade-4 {
@@ -241,8 +239,6 @@
241239
}
242240

243241
.display-3 {
244-
display: flow;
245-
display: flow-root;
246242
display: contents;
247243
display: ruby;
248244
display: ruby-base;
@@ -410,10 +406,8 @@
410406
}
411407

412408
.grid-1 {
413-
grid-template: auto;
414409
display: minmax(0, 1);
415410
display: repeat(4);
416-
display: 0.2fr;
417411
display: dense;
418412
display: auto-flow;
419413
display: span;
@@ -968,12 +962,8 @@ view {
968962
}
969963

970964
.text-3 {
971-
hyphens: auto;
972-
line-break: auto;
973-
overflow-wrap: auto;
974965
tab-size: auto;
975966
text-align-all: auto;
976-
display: manual;
977967
display: loose;
978968
display: strict;
979969
display: match-parent;
@@ -1091,12 +1081,8 @@ view {
10911081

10921082
.values-3 {
10931083
display: 1ch;
1094-
display: 1vw;
1095-
display: 1vh;
1096-
display: 1vmin;
10971084
display: 1q;
10981085
display: 1turn;
1099-
display: calc(100%/3 - 2*1em - 2*1px);
11001086
}
11011087

11021088
.values-4 {
@@ -1113,8 +1099,7 @@ view {
11131099
}
11141100

11151101
.variables-1 {
1116-
--var-foo: auto;
1117-
display: var(foo);
1102+
display: auto;
11181103
}
11191104

11201105
.web-animations-1 {

0 commit comments

Comments
 (0)