forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
Scheme
37 lines
1.0 KiB
Scheme
((comment) @injection.content
|
|
(#set! injection.language "comment"))
|
|
|
|
; There are 3 ways to define a regex
|
|
; - "[abc]?".toRegex()
|
|
((call_expression
|
|
(navigation_expression
|
|
([(line_string_literal) (multi_line_string_literal)] @injection.content)
|
|
(navigation_suffix
|
|
((simple_identifier) @_function
|
|
(#eq? @_function "toRegex")))))
|
|
(#set! injection.language "regex"))
|
|
|
|
; - Regex("[abc]?")
|
|
((call_expression
|
|
((simple_identifier) @_function
|
|
(#eq? @_function "Regex"))
|
|
(call_suffix
|
|
(value_arguments
|
|
(value_argument
|
|
[ (line_string_literal) (multi_line_string_literal) ] @injection.content))))
|
|
(#set! injection.language "regex"))
|
|
|
|
; - Regex.fromLiteral("[abc]?")
|
|
((call_expression
|
|
(navigation_expression
|
|
((simple_identifier) @_class
|
|
(#eq? @_class "Regex"))
|
|
(navigation_suffix
|
|
((simple_identifier) @_function
|
|
(#eq? @_function "fromLiteral"))))
|
|
(call_suffix
|
|
(value_arguments
|
|
(value_argument
|
|
[ (line_string_literal) (multi_line_string_literal) ] @injection.content))))
|
|
(#set! injection.language "regex"))
|