Variable: c-ts-mode--doxygen-comment-regex

c-ts-mode--doxygen-comment-regex is a variable defined in c-ts-mode.el.gz.

Value

"\\(?:/\\(?:\\*[!*]\\|/[!/]\\)\\)"

Documentation

A regexp that matches all doxygen comment styles.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/c-ts-mode.el.gz
(defvar c-ts-mode--doxygen-comment-regex
  (rx (| "/**" "/*!" "//!" "///"))
  "A regexp that matches all doxygen comment styles.")