mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
Disable tab-bar by default in Speedbar frames
* lisp/speedbar.el (speedbar-frame-parameters): Set tab-bar-lines to 0.
This commit is contained in:
parent
f30801a203
commit
9e22cd30eb
1 changed files with 3 additions and 1 deletions
|
|
@ -294,6 +294,7 @@ A nil value means don't show the file in the list."
|
||||||
(border-width . 0)
|
(border-width . 0)
|
||||||
(menu-bar-lines . 0)
|
(menu-bar-lines . 0)
|
||||||
(tool-bar-lines . 0)
|
(tool-bar-lines . 0)
|
||||||
|
(tab-bar-lines . 0)
|
||||||
(unsplittable . t)
|
(unsplittable . t)
|
||||||
(left-fringe . 0)
|
(left-fringe . 0)
|
||||||
)
|
)
|
||||||
|
|
@ -304,7 +305,8 @@ attached to and added to this list before the new frame is initialized."
|
||||||
:group 'speedbar
|
:group 'speedbar
|
||||||
:type '(repeat (cons :format "%v"
|
:type '(repeat (cons :format "%v"
|
||||||
(symbol :tag "Parameter")
|
(symbol :tag "Parameter")
|
||||||
(sexp :tag "Value"))))
|
(sexp :tag "Value")))
|
||||||
|
:version "30.1")
|
||||||
|
|
||||||
(defcustom speedbar-use-imenu-flag t
|
(defcustom speedbar-use-imenu-flag t
|
||||||
"Non-nil means use imenu for file parsing, nil to use etags.
|
"Non-nil means use imenu for file parsing, nil to use etags.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue