From 39ecd6624065cefed8351583bb6c4d48c5c5ec84 Mon Sep 17 00:00:00 2001 From: Aleksei Abakumkin Date: Wed, 18 Aug 2021 09:49:25 +0300 Subject: [PATCH] Remove redunant capture. --- queries/c_sharp/highlights.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/queries/c_sharp/highlights.scm b/queries/c_sharp/highlights.scm index 07fe08298..42ec33597 100644 --- a/queries/c_sharp/highlights.scm +++ b/queries/c_sharp/highlights.scm @@ -1,8 +1,8 @@ (identifier) @variable -((identifier) @keyword @_p - (#eq? @_p "value") - (#has-ancestor? @_p accessor_declaration)) +((identifier) @keyword + (#eq? @keyword "value") + (#has-ancestor? @keyword accessor_declaration)) (method_declaration name: (identifier) @method)