From b963e9f994d989eb0cbc5461c91a5606440b6e7c Mon Sep 17 00:00:00 2001 From: Sal Bakraa Date: Thu, 6 Jan 2022 02:59:35 +0300 Subject: [PATCH] fix(kotlin): use @attribute instead of @annotation --- queries/kotlin/highlights.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/queries/kotlin/highlights.scm b/queries/kotlin/highlights.scm index ef1d2185a..edd97223e 100644 --- a/queries/kotlin/highlights.scm +++ b/queries/kotlin/highlights.scm @@ -318,24 +318,24 @@ (annotation - "@" @annotation (use_site_target)? @annotation) + "@" @attribute (use_site_target)? @attribute) (annotation (user_type - (type_identifier) @annotation)) + (type_identifier) @attribute)) (annotation (constructor_invocation (user_type - (type_identifier) @annotation))) + (type_identifier) @attribute))) (file_annotation - "@" @annotation "file" @annotation ":" @annotation) + "@" @attribute "file" @attribute ":" @attribute) (file_annotation (user_type - (type_identifier) @annotation)) + (type_identifier) @attribute)) (file_annotation (constructor_invocation (user_type - (type_identifier) @annotation))) + (type_identifier) @attribute))) ;;; Operators & Punctuation