crates/languages/src/bash/injections.scm 🔗
@@ -0,0 +1,3 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
Donnie Adams created
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>
crates/languages/src/bash/injections.scm | 3 +++
crates/languages/src/c/injections.scm | 4 ++++
crates/languages/src/cpp/injections.scm | 4 ++++
crates/languages/src/gitcommit/injections.scm | 4 ++++
crates/languages/src/go/injections.scm | 4 ++++
crates/languages/src/javascript/injections.scm | 4 ++++
crates/languages/src/python/injections.scm | 3 +++
crates/languages/src/tsx/injections.scm | 4 ++++
crates/languages/src/typescript/injections.scm | 4 ++++
crates/languages/src/yaml/injections.scm | 3 +++
extensions/html/languages/html/injections.scm | 4 ++++
11 files changed, 41 insertions(+)
@@ -0,0 +1,3 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
@@ -1,3 +1,7 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
+
(preproc_def
value: (preproc_arg) @injection.content
(#set! injection.language "c"))
@@ -1,3 +1,7 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
+
(preproc_def
value: (preproc_arg) @injection.content
(#set! injection.language "c++"))
@@ -1,3 +1,7 @@
+((comment) @content
+ (#set! injection.language "comment")
+)
+
((scissors) @content
(#set! "language" "diff"))
@@ -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
@@ -1,3 +1,7 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
+
(((comment) @_jsdoc_comment
(#match? @_jsdoc_comment "(?s)^/[*][*][^*].*[*]/$")) @injection.content
(#set! injection.language "jsdoc"))
@@ -0,0 +1,3 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
@@ -1,3 +1,7 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
+
(((comment) @_jsdoc_comment
(#match? @_jsdoc_comment "(?s)^/[*][*][^*].*[*]/$")) @injection.content
(#set! injection.language "jsdoc"))
@@ -1,3 +1,7 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
+
(((comment) @_jsdoc_comment
(#match? @_jsdoc_comment "(?s)^/[*][*][^*].*[*]/$")) @injection.content
(#set! injection.language "jsdoc"))
@@ -0,0 +1,3 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
@@ -1,3 +1,7 @@
+((comment) @injection.content
+ (#set! injection.language "comment")
+)
+
(script_element
(raw_text) @injection.content
(#set! injection.language "javascript"))