Variable: speedbar-select-frame-method

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

Value

attached

Documentation

Specify how to select a frame for displaying a file.

A number such as 1 or -1 means to pass that number to other-frame while selecting a frame from speedbar. Any other value means to use the attached frame (the frame that speedbar was started from).

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
;;; Loading files into the attached frame.
;;
(defcustom speedbar-select-frame-method 'attached
  "Specify how to select a frame for displaying a file.
A number such as 1 or -1 means to pass that number to `other-frame'
while selecting a frame from speedbar.  Any other value means to use
the attached frame (the frame that speedbar was started from)."
  :group 'speedbar
  :type '(choice integer (other :tag "attached" attached)))