adds missing tree-sitter-comment injection for js/ts (#2763)

imgbot
farwyler 2 years ago committed by GitHub
parent 55f4f69515
commit cad4e03a00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,7 +22,15 @@
((regex_pattern) @injection.content
(#set! injection.language "regex"))
; Parse JSDoc annotations in comments
; Parse JSDoc annotations in multiline comments
((comment) @injection.content
(#set! injection.language "jsdoc"))
(#set! injection.language "jsdoc")
(#match? @injection.content "^/\\*+"))
; Parse general tags in single line comments
((comment) @injection.content
(#set! injection.language "comment")
(#match? @injection.content "^//"))

@ -0,0 +1,5 @@
; Parse general comment tags
((document) @injection.content
(#set! injection.include-children)
(#set! injection.language "comment"))
Loading…
Cancel
Save