nvim-treesitter/queries/regex/highlights.scm
Riley Bruins 98b46a647e feat(regex): highlights for lazy quantifiers, \k
Highlights the "?" following .* and the \k backreference operator in a
pattern like the following: title=(?<quote>["'])(.*?)\k<quote>
2024-11-03 11:35:27 +01:00

52 lines
732 B
Scheme

; Forked from tree-sitter-regex
; The MIT License (MIT) Copyright (c) 2014 Max Brunsfeld
[
"("
")"
"(?"
"(?:"
"(?<"
">"
"["
"]"
"{"
"}"
] @punctuation.bracket
(group_name) @property
; These are escaped special characters that lost their special meaning
; -> no special highlighting
(identity_escape) @string.regexp
(class_character) @constant
(decimal_digits) @number
[
(control_letter_escape)
(character_class_escape)
(control_escape)
(boundary_assertion)
(non_boundary_assertion)
] @string.escape
[
"*"
"+"
"?"
"|"
"="
"!"
"-"
(backreference_escape)
(lazy)
] @operator
[
(start_assertion)
(end_assertion)
","
] @punctuation.delimiter
(any_character) @variable.builtin