Variable: smart-c-include-regexp

smart-c-include-regexp is a variable defined in hmouse-tag.el.

Value

"[      /*]*#[  ]*\\(include\\|import\\)[       ]+\\([\"<]\\)\\([^\">]+\\)[\">]"

Documentation

Regexp to match to C, C++, or Objective-C include file lines.

Include keyword matched is grouping 1. Type of include, user-specified via double quote, or system-related starting with < is given by grouping 2. File name is grouping 3.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hmouse-tag.el
(defconst smart-c-include-regexp
  "[ \t/*]*#[ \t]*\\(include\\|import\\)[ \t]+\\([\"<]\\)\\([^\">]+\\)[\">]"
  "Regexp to match to C, C++, or Objective-C include file lines.
Include keyword matched is grouping 1.  Type of include, user-specified via
double quote, or system-related starting with `<' is given by grouping 2.
File name is grouping 3.")