Skip to content

Commit

Permalink
adds missing tree-sitter-comment injection for js/ts (#2763)
Browse files Browse the repository at this point in the history
  • Loading branch information
farwyler authored Jun 20, 2022
1 parent 55f4f69 commit cad4e03
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
12 changes: 10 additions & 2 deletions runtime/queries/javascript/injections.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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 "^//"))

5 changes: 5 additions & 0 deletions runtime/queries/jsdoc/injections.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
; Parse general comment tags

((document) @injection.content
(#set! injection.include-children)
(#set! injection.language "comment"))

0 comments on commit cad4e03

Please sign in to comment.