Add indents and textobjects for Kotlin (#12925)

This commit is contained in:
Sebastian Dörner 2025-02-20 18:58:27 +01:00 committed by GitHub
parent 3d7e2730e7
commit 0deb8bbce6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 106 additions and 24 deletions

View file

@ -68,19 +68,10 @@
"->"
] @operator
(multi_line_string_literal
(string_literal
"$" @punctuation
(interpolated_identifier) @none)
(multi_line_string_literal
"${" @punctuation
(interpolated_expression) @none
"}" @punctuation.)
; NOTE: `interpolated_identifier`s can be highlighted in any way
(line_string_literal
"$" @punctuation
(interpolated_identifier) @none)
(line_string_literal
(string_literal
"${" @punctuation
(interpolated_expression) @none
"}" @punctuation)
@ -108,6 +99,7 @@
"class"
"object"
"interface"
"companion"
; "typeof" ; NOTE: It is reserved for future use
] @keyword
@ -156,17 +148,14 @@
;;; Literals
; NOTE: Escapes not allowed in multi-line strings
(line_string_literal (character_escape_seq) @constant.character.escape)
(character_literal (character_escape_seq) @constant.character.escape)
[
(line_string_literal)
(multi_line_string_literal)
] @string
(string_literal) @string
(character_literal) @constant.character
[
"null" ; should be highlighted the same as booleans
(null_literal) ; should be highlighted the same as booleans
(boolean_literal)
] @constant.builtin.boolean
@ -180,7 +169,8 @@
] @constant.numeric.integer
[
(comment)
(line_comment)
(multiline_comment)
(shebang_line)
] @comment