Add comment language injection for supported languages (#39884)

Release Notes:

- Added comment language injections for builtin languages. This enables
highlighting of `TODO`s and similar notes with the comment extension
installed.

Signed-off-by: Donnie Adams <donnie@thedadams.com>
This commit is contained in:
Donnie Adams
2025-10-20 08:45:51 -04:00
committed by GitHub
parent 96415e2d19
commit 08ecaa3931
11 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
((comment) @injection.content
(#set! injection.language "comment")
)

View File

@@ -1,3 +1,7 @@
((comment) @injection.content
(#set! injection.language "comment")
)
(preproc_def
value: (preproc_arg) @injection.content
(#set! injection.language "c"))

View File

@@ -1,3 +1,7 @@
((comment) @injection.content
(#set! injection.language "comment")
)
(preproc_def
value: (preproc_arg) @injection.content
(#set! injection.language "c++"))

View File

@@ -1,3 +1,7 @@
((comment) @content
(#set! injection.language "comment")
)
((scissors) @content
(#set! "language" "diff"))

View File

@@ -1,4 +1,8 @@
; Refer to https://github.com/nvim-treesitter/nvim-treesitter/blob/master/queries/go/injections.scm#L4C1-L16C41
((comment) @injection.content
(#set! injection.language "comment")
)
(call_expression
(selector_expression) @_function
(#any-of? @_function

View File

@@ -1,3 +1,7 @@
((comment) @injection.content
(#set! injection.language "comment")
)
(((comment) @_jsdoc_comment
(#match? @_jsdoc_comment "(?s)^/[*][*][^*].*[*]/$")) @injection.content
(#set! injection.language "jsdoc"))

View File

@@ -0,0 +1,3 @@
((comment) @injection.content
(#set! injection.language "comment")
)

View File

@@ -1,3 +1,7 @@
((comment) @injection.content
(#set! injection.language "comment")
)
(((comment) @_jsdoc_comment
(#match? @_jsdoc_comment "(?s)^/[*][*][^*].*[*]/$")) @injection.content
(#set! injection.language "jsdoc"))

View File

@@ -1,3 +1,7 @@
((comment) @injection.content
(#set! injection.language "comment")
)
(((comment) @_jsdoc_comment
(#match? @_jsdoc_comment "(?s)^/[*][*][^*].*[*]/$")) @injection.content
(#set! injection.language "jsdoc"))

View File

@@ -0,0 +1,3 @@
((comment) @injection.content
(#set! injection.language "comment")
)

View File

@@ -1,3 +1,7 @@
((comment) @injection.content
(#set! injection.language "comment")
)
(script_element
(raw_text) @injection.content
(#set! injection.language "javascript"))