e72786df8e
* Add tree-sitter-comment Fix #1164 * fix precedence in tree-sitter-comment highlights connects https://github.com/helix-editor/helix/pull/1170 * set injection-regex for comment language * remove comment filetype * fix comment injections for neovim-style injections tags * add comment injections for elixir * remove f.comment * fix spacing in .gitmodules * run 'cargo xtask docgen' Co-authored-by: Ivan Tham <pickfire@riseup.net>
30 lines
707 B
Scheme
30 lines
707 B
Scheme
; injections.scm
|
|
; --------------
|
|
((style_element
|
|
(raw_text) @injection.content)
|
|
(#set! injection.language "css"))
|
|
|
|
((attribute
|
|
(attribute_name) @_attr
|
|
(quoted_attribute_value (attribute_value) @css))
|
|
(#eq? @_attr "style"))
|
|
|
|
((script_element
|
|
(raw_text) @injection.content)
|
|
(#set! injection.language "javascript"))
|
|
|
|
((raw_text_expr) @injection.content
|
|
(#set! injection.language "javascript"))
|
|
|
|
(
|
|
(script_element
|
|
(start_tag
|
|
(attribute
|
|
(quoted_attribute_value (attribute_value) @_lang)))
|
|
(raw_text) @injection.content)
|
|
(#match? @_lang "(ts|typescript)")
|
|
(#set! injection.language "typescript")
|
|
)
|
|
|
|
((comment) @injection.content
|
|
(#set! injection.language "comment"))
|