mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
queries: Inject into string content in Rust injections
This change also recognizes `RegexBuilder::new` calls for the regex injection.
This commit is contained in:
parent
7f416704b1
commit
694b61514f
1 changed files with 12 additions and 6 deletions
|
@ -37,16 +37,16 @@
|
||||||
|
|
||||||
(call_expression
|
(call_expression
|
||||||
function: (scoped_identifier
|
function: (scoped_identifier
|
||||||
path: (identifier) @_regex (#eq? @_regex "Regex")
|
path: (identifier) @_regex (#any-of? @_regex "Regex" "RegexBuilder")
|
||||||
name: (identifier) @_new (#eq? @_new "new"))
|
name: (identifier) @_new (#eq? @_new "new"))
|
||||||
arguments: (arguments (raw_string_literal) @injection.content)
|
arguments: (arguments (raw_string_literal (string_content) @injection.content))
|
||||||
(#set! injection.language "regex"))
|
(#set! injection.language "regex"))
|
||||||
|
|
||||||
(call_expression
|
(call_expression
|
||||||
function: (scoped_identifier
|
function: (scoped_identifier
|
||||||
path: (scoped_identifier (identifier) @_regex (#eq? @_regex "Regex") .)
|
path: (scoped_identifier (identifier) @_regex (#any-of? @_regex "Regex" "RegexBuilder") .)
|
||||||
name: (identifier) @_new (#eq? @_new "new"))
|
name: (identifier) @_new (#eq? @_new "new"))
|
||||||
arguments: (arguments (raw_string_literal) @injection.content)
|
arguments: (arguments (raw_string_literal (string_content) @injection.content))
|
||||||
(#set! injection.language "regex"))
|
(#set! injection.language "regex"))
|
||||||
|
|
||||||
; Highlight SQL in `sqlx::query!()`, `sqlx::query_scalar!()`, and `sqlx::query_scalar_unchecked!()`
|
; Highlight SQL in `sqlx::query!()`, `sqlx::query_scalar!()`, and `sqlx::query_scalar_unchecked!()`
|
||||||
|
@ -57,7 +57,10 @@
|
||||||
(token_tree
|
(token_tree
|
||||||
; Only the first argument is SQL
|
; Only the first argument is SQL
|
||||||
.
|
.
|
||||||
[(string_literal) (raw_string_literal)] @injection.content
|
[
|
||||||
|
(string_literal (string_content) @injection.content)
|
||||||
|
(raw_string_literal (string_content) @injection.content)
|
||||||
|
]
|
||||||
)
|
)
|
||||||
(#set! injection.language "sql"))
|
(#set! injection.language "sql"))
|
||||||
|
|
||||||
|
@ -72,6 +75,9 @@
|
||||||
; Allow anything as the first argument in case the user has lower case type
|
; Allow anything as the first argument in case the user has lower case type
|
||||||
; names for some reason
|
; names for some reason
|
||||||
(_)
|
(_)
|
||||||
[(string_literal) (raw_string_literal)] @injection.content
|
[
|
||||||
|
(string_literal (string_content) @injection.content)
|
||||||
|
(raw_string_literal (string_content) @injection.content)
|
||||||
|
]
|
||||||
)
|
)
|
||||||
(#set! injection.language "sql"))
|
(#set! injection.language "sql"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue