Variable: speedbar-easymenu-definition-base
speedbar-easymenu-definition-base is a variable defined in
speedbar.el.gz.
Value
("Speedbar"
["Update" speedbar-refresh t]
["Auto Update" speedbar-toggle-updates :active
(not speedbar-update-flag-disable)
:style toggle :selected speedbar-update-flag])
Documentation
Base part of the speedbar menu.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defvar speedbar-easymenu-definition-base
(append
'("Speedbar"
["Update" speedbar-refresh t]
["Auto Update" speedbar-toggle-updates
:active (not speedbar-update-flag-disable)
:style toggle :selected speedbar-update-flag])
(when (and (fboundp 'defimage) (display-graphic-p))
(list
["Use Images" speedbar-toggle-images
:style toggle :selected speedbar-use-images])))
"Base part of the speedbar menu.")