aboutsummaryrefslogtreecommitdiffstats
path: root/queries/kotlin
diff options
context:
space:
mode:
authorOmar Valdez <omarantoniovaldezf2@gmail.com>2024-07-27 16:28:19 -0700
committerChristian Clason <c.clason@uni-graz.at>2024-07-28 11:43:41 +0200
commit51bba660a89e0027929206b622c9c1cbdd995cfb (patch)
tree412313302f69c4dbd191f99c1529017455ad3429 /queries/kotlin
parentfeat(latex): capture left/right math delimiters (diff)
downloadnvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar
nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.gz
nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.bz2
nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.lz
nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.xz
nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.tar.zst
nvim-treesitter-51bba660a89e0027929206b622c9c1cbdd995cfb.zip
refactor(queries): Remove quotes from properties in set! directive
Diffstat (limited to 'queries/kotlin')
-rw-r--r--queries/kotlin/locals.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/queries/kotlin/locals.scm b/queries/kotlin/locals.scm
index 93edf99f1..330803f1b 100644
--- a/queries/kotlin/locals.scm
+++ b/queries/kotlin/locals.scm
@@ -13,13 +13,13 @@
(function_declaration
.
(simple_identifier) @local.definition.function
- (#set! "definition.function.scope" "parent"))
+ (#set! definition.function.scope "parent"))
(class_body
(function_declaration
.
(simple_identifier) @local.definition.method)
- (#set! "definition.method.scope" "parent"))
+ (#set! definition.method.scope "parent"))
; Variables
(function_declaration
@@ -52,11 +52,11 @@
; Types
(class_declaration
(type_identifier) @local.definition.type
- (#set! "definition.type.scope" "parent"))
+ (#set! definition.type.scope "parent"))
(type_alias
(type_identifier) @local.definition.type
- (#set! "definition.type.scope" "parent"))
+ (#set! definition.type.scope "parent"))
; Scopes
[