Skip to content

Commit 77c66d5

Browse files
committed
Add missing value
1 parent c7cba69 commit 77c66d5

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

after/syntax/css/css-align-3.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
syn match cssFontProp contained "\<\(justify\|align\)-\(self\|content\|items\)\>"
2-
syn keyword cssFontAttr contained safe unsafe
2+
syn keyword cssFontAttr contained safe unsafe legacy
33
syn match cssFontAttr contained "\<\(self\|flex\)-\(start\|end\)\>"
44
syn match cssFontAttr contained "\<space-\(between\|around\|evenly\)\>"

test/test.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
display: space-around;
99
display: space-between;
1010
display: space-evenly;
11+
display: legacy;
1112
}
1213

1314
.animations {

test/test.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
display: space-around;
1919
display: space-between;
2020
display: space-evenly;
21+
display: legacy;
2122
}
2223
</style>
2324
<style>

0 commit comments

Comments
 (0)