Variable: antlr-imenu-name

antlr-imenu-name is a customizable variable defined in antlr-mode.el.gz.

Value

t

Documentation

Non-nil, if a "Index" menu should be added to the menubar.

If it is a string, it is used instead "Index". Requires package imenu. For sorted menu entries, customize variable imenu-sort-function.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
;;;===========================================================================
;;;  Menu
;;;===========================================================================

(defcustom antlr-imenu-name t
  "Non-nil, if a \"Index\" menu should be added to the menubar.
If it is a string, it is used instead \"Index\".  Requires package
imenu.  For sorted menu entries, customize variable
`imenu-sort-function'."
  :type '(choice (const :tag "No menu" nil)
		 (const :tag "Index menu" t)
		 (string :tag "Other menu name")))