From 92fb97888b77aa3584020f0b27077e54f7489fe0 Mon Sep 17 00:00:00 2001 From: robbevp Date: Thu, 27 Jan 2022 11:30:00 +0100 Subject: [PATCH] Fix inconsistent cursor around color Select the full hex code in `bgc`, so it works the same as all other color-snippets --- snippets/css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/css.json b/snippets/css.json index 9afe62f3..a525beba 100644 --- a/snippets/css.json +++ b/snippets/css.json @@ -62,7 +62,7 @@ "bg": "background:${1:#000}", "bga": "background-attachment:fixed|scroll", "bgbk": "background-break:bounding-box|each-box|continuous", - "bgc": "background-color:#${1:fff}", + "bgc": "background-color:${1:#fff}", "bgcp": "background-clip:padding-box|border-box|content-box|no-clip", "bgi": "background-image:url(${0})", "bgo": "background-origin:padding-box|border-box|content-box",