Variable: LaTeX-menu-max-items

LaTeX-menu-max-items is a customizable variable defined in latex.el.

Value

25

Documentation

Maximum number of items in the menu for LaTeX environments.

If number of entries in a menu is larger than this value, split menu into submenus of nearly equal length. If nil, never split menu into submenus.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-menu-max-items 25
  "Maximum number of items in the menu for LaTeX environments.
If number of entries in a menu is larger than this value, split menu
into submenus of nearly equal length.  If nil, never split menu into
submenus."
  :group 'LaTeX-environment
  :type '(choice (const :tag "no submenus" nil)
                 (integer)))