summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuan Fu <casouri@gmail.com>2024-05-08 20:27:12 -0700
committerYuan Fu <casouri@gmail.com>2024-05-08 20:36:36 -0700
commit03d4b96da62fbb7abfb7fa8fcfc963313e394f22 (patch)
tree62718fa529657aacbc3580b8188cc8cbc0c73d6f
parent86187d43e2db841f8ca2893a31f05669f4a1247b (diff)
downloademacs-03d4b96da62fbb7abfb7fa8fcfc963313e394f22.tar.gz
Fontify doc comment in c-ts-mode with doc-face
* lisp/progmodes/c-ts-mode.el (c-ts-mode--font-lock-settings): Add rule for /** comments.
-rw-r--r--lisp/progmodes/c-ts-mode.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el
index a1b2b1f500c..2d431d75d21 100644
--- a/lisp/progmodes/c-ts-mode.el
+++ b/lisp/progmodes/c-ts-mode.el
@@ -597,8 +597,9 @@ MODE is either `c' or `cpp'."
(treesit-font-lock-rules
:language mode
:feature 'comment
- `((comment) @font-lock-comment-face
- (comment) @contextual)
+ `(((comment) @font-lock-doc-face
+ (:match ,(rx bos "/**") @font-lock-doc-face))
+ (comment) @font-lock-comment-face)
:language mode
:feature 'preprocessor