Variable: speedbar-window-side

speedbar-window-side is a customizable variable defined in speedbar.el.gz.

Value

left

Documentation

Control the side of the frame on which to show the speedbar window.

The value can be left, right, top or bottom. See display-buffer-in-side-window for more details.

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

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defcustom speedbar-window-side 'left
  "Control the side of the frame on which to show the speedbar window.
The value can be `left', `right', `top' or `bottom'.
See `display-buffer-in-side-window' for more details."
  :type '(radio (const :tag "Left" left)
		(const :tag "Right" right)
		(const :tag "Top" top)
		(const :tag "Bottom" bottom))
  :group 'speedbar
  :version "31.1")