mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
highlights: add type.parameter scope to several more languages (#8718)
* typescript * go * haskell * ocaml * kotlin (+ bugfix)
This commit is contained in:
parent
a98ad137f9
commit
f73e9a8d15
8 changed files with 63 additions and 8 deletions
|
@ -244,7 +244,10 @@
|
|||
. (identifier)) @namespace
|
||||
|
||||
((type_identifier) @type.builtin
|
||||
(#match? @function.builtin "^(Byte|Short|Int|Long|UByte|UShort|UInt|ULong|Float|Double|Boolean|Char|String|Array|ByteArray|ShortArray|IntArray|LongArray|UByteArray|UShortArray|UIntArray|ULongArray|FloatArray|DoubleArray|BooleanArray|CharArray|Map|Set|List|EmptyMap|EmptySet|EmptyList|MutableMap|MutableSet|MutableList)$"))
|
||||
(#match? @type.builtin "^(Byte|Short|Int|Long|UByte|UShort|UInt|ULong|Float|Double|Boolean|Char|String|Array|ByteArray|ShortArray|IntArray|LongArray|UByteArray|UShortArray|UIntArray|ULongArray|FloatArray|DoubleArray|BooleanArray|CharArray|Map|Set|List|EmptyMap|EmptySet|EmptyList|MutableMap|MutableSet|MutableList)$"))
|
||||
|
||||
(type_parameter
|
||||
(type_identifier) @type.parameter)
|
||||
|
||||
(type_identifier) @type
|
||||
|
||||
|
|
15
runtime/queries/kotlin/locals.scm
Normal file
15
runtime/queries/kotlin/locals.scm
Normal file
|
@ -0,0 +1,15 @@
|
|||
; Scopes
|
||||
|
||||
[
|
||||
(class_declaration)
|
||||
(function_declaration)
|
||||
] @local.scope
|
||||
|
||||
; Definitions
|
||||
|
||||
(type_parameter
|
||||
(type_identifier) @local.definition)
|
||||
|
||||
; References
|
||||
|
||||
(type_identifier) @local.reference
|
Loading…
Add table
Add a link
Reference in a new issue