mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
310f0925ec
commit
692b051b09
1247 changed files with 6096 additions and 9074 deletions
1
runtime/queries/astro/folds.scm
Normal file
1
runtime/queries/astro/folds.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
; inherits: html
|
||||
29
runtime/queries/astro/highlights.scm
Normal file
29
runtime/queries/astro/highlights.scm
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
; inherits: html_tags
|
||||
|
||||
(doctype) @constant
|
||||
|
||||
"<!" @tag.delimiter
|
||||
|
||||
"---" @punctuation.delimiter
|
||||
|
||||
[
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.special
|
||||
|
||||
; custom components get `@type` highlighting
|
||||
((start_tag
|
||||
(tag_name) @type)
|
||||
(#lua-match? @type "^[A-Z]"))
|
||||
|
||||
((end_tag
|
||||
(tag_name) @type)
|
||||
(#lua-match? @type "^[A-Z]"))
|
||||
|
||||
((self_closing_tag
|
||||
(tag_name) @type)
|
||||
(#lua-match? @type "^[A-Z]"))
|
||||
|
||||
((erroneous_end_tag
|
||||
(erroneous_end_tag_name) @type)
|
||||
(#lua-match? @type "^[A-Z]"))
|
||||
1
runtime/queries/astro/indents.scm
Normal file
1
runtime/queries/astro/indents.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
; inherits: html
|
||||
32
runtime/queries/astro/injections.scm
Normal file
32
runtime/queries/astro/injections.scm
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
; inherits: html_tags
|
||||
|
||||
(frontmatter
|
||||
(frontmatter_js_block) @injection.content
|
||||
(#set! injection.language "typescript"))
|
||||
|
||||
(attribute_interpolation
|
||||
(attribute_js_expr) @injection.content
|
||||
(#set! injection.language "typescript"))
|
||||
|
||||
(attribute
|
||||
(attribute_backtick_string) @injection.content
|
||||
(#set! injection.language "typescript"))
|
||||
|
||||
(html_interpolation
|
||||
(permissible_text) @injection.content
|
||||
(#set! injection.language "typescript"))
|
||||
|
||||
(script_element
|
||||
(raw_text) @injection.content
|
||||
(#set! injection.language "typescript"))
|
||||
|
||||
(style_element
|
||||
(start_tag
|
||||
(attribute
|
||||
(attribute_name) @_lang_attr
|
||||
(quoted_attribute_value
|
||||
(attribute_value) @_lang_value)))
|
||||
(raw_text) @injection.content
|
||||
(#eq? @_lang_attr "lang")
|
||||
(#eq? @_lang_value "scss")
|
||||
(#set! injection.language "scss"))
|
||||
1
runtime/queries/astro/locals.scm
Normal file
1
runtime/queries/astro/locals.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
; inherits: html
|
||||
Loading…
Add table
Add a link
Reference in a new issue