Skip to content

Commit

Permalink
fix(parser): Support Assembly's block comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Dec 29, 2023
1 parent 6a57bd9 commit c601460
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ts-fold-parsers.el
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@

(defun ts-fold-parsers-asm ()
"Rule set for Assembly."
'((label . ts-fold-range-asm-label)
'((label . ts-fold-range-asm-label)
(block_comment . ts-fold-range-c-like-comment)
(line_comment
. (lambda (node offset)
(let ((text (tsc-node-text node)))
Expand Down

0 comments on commit c601460

Please sign in to comment.