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.

Source Code

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

(defcustom antlr-imenu-name t ; (featurep 'xemacs) ; TODO: Emacs-21 bug?
  "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."
  :type '(choice (const :tag "No menu" nil)
		 (const :tag "Index menu" t)
		 (string :tag "Other menu name")))