Variable: markdown-nested-imenu-heading-index

markdown-nested-imenu-heading-index is a customizable variable defined in markdown-mode.el.

Value

t

Documentation

Use nested or flat imenu heading index.

A nested index may provide more natural browsing from the menu, but a flat list may allow for faster keyboard navigation via tab completion.

This variable was added, or its default value changed, in markdown-mode version 2.2.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-nested-imenu-heading-index t
  "Use nested or flat imenu heading index.
A nested index may provide more natural browsing from the menu,
but a flat list may allow for faster keyboard navigation via tab
completion."
  :group 'markdown
  :type 'boolean
  :safe 'booleanp
  :package-version '(markdown-mode . "2.2"))