From faf0eee3c9707e71539de970fcbdf6db7622d293 Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Wed, 25 Dec 2024 15:06:14 +0000 Subject: [PATCH] feat: Highlight `=` and `;` in `.proto` files (#12339) --- runtime/queries/protobuf/highlights.scm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/runtime/queries/protobuf/highlights.scm b/runtime/queries/protobuf/highlights.scm index c35c430e3..6deee7df8 100644 --- a/runtime/queries/protobuf/highlights.scm +++ b/runtime/queries/protobuf/highlights.scm @@ -55,4 +55,12 @@ "]" "{" "}" -] @punctuation.bracket \ No newline at end of file +] @punctuation.bracket + +[ + "=" +] @operator + +[ + ";" +] @punctuation.delimiter