Variable: antlr-font-lock-literal-regexp

antlr-font-lock-literal-regexp is a customizable variable defined in antlr-mode.el.gz.

Value

"\"\\(\\sw\\(\\sw\\|-\\)*\\)\""

Documentation

Regexp matching literals with special syntax highlighting, or nil.

If nil, there is no special syntax highlighting for some literals. Otherwise, it should be a regular expression which must contain a regexp group. The string matched by the first group is highlighted with antlr-font-lock-literal-face.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defcustom antlr-font-lock-literal-regexp "\"\\(\\sw\\(\\sw\\|-\\)*\\)\""
  "Regexp matching literals with special syntax highlighting, or nil.
If nil, there is no special syntax highlighting for some literals.
Otherwise, it should be a regular expression which must contain a regexp
group.  The string matched by the first group is highlighted with
`antlr-font-lock-literal-face'."
  :type '(choice (const :tag "None" nil) regexp))