]> git.eshelyaron.com Git - emacs.git/commitdiff
New option tab-bar-history-buttons-show
authorGabriel do Nascimento Ribeiro <gabriel.nascimento@nubank.com.br>
Sun, 13 Dec 2020 18:35:46 +0000 (15:35 -0300)
committerJuri Linkov <juri@linkov.net>
Mon, 14 Dec 2020 08:54:52 +0000 (10:54 +0200)
    * lisp/tab-bar.el (tab-bar-history-buttons-show): If true,
    show back and forward buttons when tab-bar-history-mode
    is enabled.  (Bug#45227)

    Copyright-paperwork-exempt: yes

lisp/tab-bar.el

index 3a705aa015d6b1a711e4568ab65b3edb5bbd3cf4..9506b1b22ea4b03b51f53b5ac6cbdc4b23920bda 100644 (file)
@@ -296,6 +296,16 @@ If nil, don't show it at all."
 (defvar tab-bar-forward-button " > "
   "Button for going forward in tab history.")
 
+(defcustom tab-bar-history-buttons-show t
+  "Show back and forward buttons when `tab-bar-history-mode' is enabled."
+  :type 'boolean
+  :initialize 'custom-initialize-default
+  :set (lambda (sym val)
+         (set-default sym val)
+         (force-mode-line-update))
+  :group 'tab-bar
+  :version "28.1")
+
 (defcustom tab-bar-tab-hints nil
   "Show absolute numbers on tabs in the tab bar before the tab name.
 This helps to select the tab by its number using `tab-bar-select-tab'
@@ -415,7 +425,7 @@ Return its existing value or a new value."
          (tabs (funcall tab-bar-tabs-function)))
     (append
      '(keymap (mouse-1 . tab-bar-handle-mouse))
-     (when tab-bar-history-mode
+     (when (and tab-bar-history-mode tab-bar-history-buttons-show)
        `((sep-history-back menu-item ,separator ignore)
          (history-back
           menu-item ,tab-bar-back-button tab-bar-history-back