From fc61796895a0175ccfed7f572960dc3cd21e7f04 Mon Sep 17 00:00:00 2001 From: ChrHorn Date: Thu, 5 May 2022 09:14:17 +0200 Subject: [PATCH] TOML highlight: use variable.other.member instead of string for quoted keys (#2391) --- runtime/queries/toml/highlights.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/queries/toml/highlights.scm b/runtime/queries/toml/highlights.scm index 2742b2be6..3c4425f8c 100644 --- a/runtime/queries/toml/highlights.scm +++ b/runtime/queries/toml/highlights.scm @@ -1,8 +1,10 @@ ; Properties ;----------- -(bare_key) @variable.other.member -(quoted_key) @string +[ + (bare_key) + (quoted_key) +] @variable.other.member ; Literals ;---------