Variable: vhdl-speedbar-display-mode

vhdl-speedbar-display-mode is a customizable variable defined in vhdl-mode.el.gz.

Value

files

Documentation

Specifies the default displaying mode when opening speedbar.

Alternatively, the displaying mode can be selected from the speedbar menu or by typing f (files), h (directory hierarchy) or H (project hierarchy).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/vhdl-mode.el.gz
(defcustom vhdl-speedbar-display-mode 'files
  "Specifies the default displaying mode when opening speedbar.
Alternatively, the displaying mode can be selected from the speedbar menu or
by typing `f' (files), `h' (directory hierarchy) or `H' (project hierarchy)."
  :type '(choice (const :tag "Files" files)
		 (const :tag "Directory hierarchy" directory)
		 (const :tag "Project hierarchy" project))
  :group 'vhdl-speedbar)