Variable: speedbar-frame-parameters

speedbar-frame-parameters is a customizable variable defined in speedbar.el.gz.

Value

((minibuffer) (width . 20) (border-width . 0) (menu-bar-lines . 0)
 (tool-bar-lines . 0) (tab-bar-lines . 0) (unsplittable . t)
 (left-fringe . 0))

Documentation

Parameters to use when creating the speedbar frame in Emacs.

Any parameter supported by a frame may be added. The parameter height will be initialized to the height of the frame speedbar is attached to and added to this list before the new frame is initialized.

This variable was added, or its default value changed, in Emacs 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defcustom speedbar-frame-parameters '((minibuffer . nil)
				       (width . 20)
				       (border-width . 0)
				       (menu-bar-lines . 0)
				       (tool-bar-lines . 0)
				       (tab-bar-lines . 0)
				       (unsplittable . t)
				       (left-fringe . 0)
				       )
  "Parameters to use when creating the speedbar frame in Emacs.
Any parameter supported by a frame may be added.  The parameter `height'
will be initialized to the height of the frame speedbar is
attached to and added to this list before the new frame is initialized."
  :group 'speedbar
  :type '(repeat (cons :format "%v"
		       (symbol :tag "Parameter")
		       (sexp :tag "Value")))
  :version "30.1")