From ef375d690e3195b57f3ec2562528f7cc0fe12ed5 Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+nik-rev@users.noreply.github.com> Date: Mon, 17 Feb 2025 18:54:49 +0000 Subject: [PATCH] feat: highlight rust repetition pattern (#12871) Co-authored-by: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com> --- runtime/queries/rust/highlights.scm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/queries/rust/highlights.scm b/runtime/queries/rust/highlights.scm index 52c13dd77..6be50825c 100644 --- a/runtime/queries/rust/highlights.scm +++ b/runtime/queries/rust/highlights.scm @@ -421,6 +421,9 @@ (#eq? @special "derive") ) +(token_repetition_pattern [")" "(" "$"] @punctuation.special) +(token_repetition_pattern "?" @operator) + ; --- ; Prelude ; ---