From 77c66d5b21dc82136a2d78c359150c65547d9e86 Mon Sep 17 00:00:00 2001 From: Kyo Nagashima Date: Tue, 28 Jun 2016 12:12:39 +0900 Subject: [PATCH] Add missing value --- after/syntax/css/css-align-3.vim | 2 +- test/test.css | 1 + test/test.html | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/after/syntax/css/css-align-3.vim b/after/syntax/css/css-align-3.vim index 95048dc..ba8b1c8 100644 --- a/after/syntax/css/css-align-3.vim +++ b/after/syntax/css/css-align-3.vim @@ -1,4 +1,4 @@ syn match cssFontProp contained "\<\(justify\|align\)-\(self\|content\|items\)\>" -syn keyword cssFontAttr contained safe unsafe +syn keyword cssFontAttr contained safe unsafe legacy syn match cssFontAttr contained "\<\(self\|flex\)-\(start\|end\)\>" syn match cssFontAttr contained "\" diff --git a/test/test.css b/test/test.css index b215b37..fc2ff59 100644 --- a/test/test.css +++ b/test/test.css @@ -8,6 +8,7 @@ display: space-around; display: space-between; display: space-evenly; + display: legacy; } .animations { diff --git a/test/test.html b/test/test.html index f3afb22..eeaae0a 100644 --- a/test/test.html +++ b/test/test.html @@ -18,6 +18,7 @@ display: space-around; display: space-between; display: space-evenly; + display: legacy; }