mirror of
https://github.com/helix-editor/helix
synced 2026-03-07 20:46:21 +01:00
46 lines
1.1 KiB
Scheme
46 lines
1.1 KiB
Scheme
((comment) @injection.content
|
|
(#set! injection.language "comment"))
|
|
|
|
; string.match("123", "%d+")
|
|
(call_stmt
|
|
invoked: (var
|
|
table_name: (name)
|
|
(key
|
|
field_name: (name) @_method))
|
|
(arglist
|
|
.
|
|
(_)
|
|
.
|
|
(string) @injection.content)
|
|
(#any-of? @_method "find" "format" "match" "gmatch" "gsub")
|
|
(#set! injection.language "luap"))
|
|
|
|
; ("123"):match("%d+")
|
|
(call_stmt
|
|
method_table: (_)
|
|
method_name: (name) @_method
|
|
(arglist
|
|
.
|
|
(string) @injection.content)
|
|
(#any-of? @_method "find" "format" "match" "gmatch" "gsub")
|
|
(#set! injection.language "luap"))
|
|
|
|
; string.format("format string", ...)
|
|
((call_stmt
|
|
invoked: (var
|
|
table_name: (name) @_table
|
|
(key
|
|
field_name: (name) @_function))
|
|
(arglist
|
|
. (string) @injection.content))
|
|
(#eq? @_table "string")
|
|
(#eq? @_function "format")
|
|
(#set! injection.language "lua-format-string"))
|
|
|
|
; ("format"):format(...)
|
|
((call_stmt
|
|
method_table: (exp_wrap (string) @injection.content)
|
|
method_name: (name) @_function)
|
|
(#eq? @_function "format")
|
|
(#set! injection.language "lua-format-string"))
|