From d5628294f602df3525966e6acf5ace08938d333d Mon Sep 17 00:00:00 2001 From: "Mohit.Tokas" Date: Sat, 7 Jun 2025 10:10:27 +0530 Subject: [PATCH 1/3] fix: correct placeholder in border-block-end snippet --- test/stylesheet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/stylesheet.ts b/test/stylesheet.ts index 2d397c33..1706271b 100644 --- a/test/stylesheet.ts +++ b/test/stylesheet.ts @@ -262,7 +262,7 @@ describe('Stylesheet abbreviations', () => { it('Logical Properties', () => { equal(expand('bbs'),'border-block-start: ${0};'); - equal(expand('bbe"'),'border-block-end: "";'); + equal(expand('bbe'),'border-block-end: ${0};'); equal(expand('bis'),'border-inline-start: ${0};'); equal(expand('bie'),'border-inline-end: ${0};'); equal(expand('bs'),'block-size: ${0};'); From 42f0b235b1c8cad18c831848c13e2965a088bec4 Mon Sep 17 00:00:00 2001 From: "Mohit.Tokas" Date: Sat, 7 Jun 2025 10:11:10 +0530 Subject: [PATCH 2/3] feat: add snippets for border-block-start and border-block-end --- src/snippets/css.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/snippets/css.json b/src/snippets/css.json index 689b3255..37d961c9 100644 --- a/src/snippets/css.json +++ b/src/snippets/css.json @@ -65,6 +65,8 @@ "bdble": "border-block-end", "bdis": "border-inline-start", "bdie": "border-inline-end", + "bbs": "border-block-start", + "bbe": "border-block-end", "bfv": "backface-visibility:hidden|visible", "bg": "background:${1:#000}", "bg:n": "background: none", From d1ee28ba449df93a0a229abf9ea066a6c3ed63c5 Mon Sep 17 00:00:00 2001 From: "Mohit.Tokas" Date: Sat, 7 Jun 2025 10:11:23 +0530 Subject: [PATCH 3/3] fix: update charset value to uppercase UTF-8 in variables.json --- src/snippets/variables.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snippets/variables.json b/src/snippets/variables.json index 80bca695..38e84aeb 100644 --- a/src/snippets/variables.json +++ b/src/snippets/variables.json @@ -1,7 +1,7 @@ { "lang": "en", "locale": "en-US", - "charset": "utf-8", + "charset": "UTF-8", "indentation": "\t", "newline": "\n" }