]> git.eshelyaron.com Git - emacs.git/commitdiff
Add abnormal hook to determine which tabs to auto-widen
authorJoseph Turner <joseph@breatheoutbreathe.in>
Tue, 16 Jul 2024 04:55:35 +0000 (21:55 -0700)
committerEshel Yaron <me@eshelyaron.com>
Tue, 20 Aug 2024 14:12:30 +0000 (16:12 +0200)
* lisp/tab-bar.el (tab-bar-auto-width-predicate-default):  Default value
for tab-bar-auto-width-functions.
(tab-bar-auto-width-functions): New abnormal hook.
(tab-bar-auto-width): Run new abnormal hook until success instead of
comparing text properties.

(cherry picked from commit 9ed761a793f0f11ffea1d2cfa9b7ff38a58d3fe1)

etc/NEWS
lisp/tab-bar.el

index 82b150e2ebccce53989d5b1398b3815f4932eeab..1e4d8bb6e066d03371c76cb60db8d69add0b72a4 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -68,6 +68,12 @@ that the actual killing or burying of the buffer is done by the caller.
 With this option set, 'quit-restore-window' will delete its window more
 aggressively rather than switching to some other buffer in it.
 
+** Tab Bars and Tab Lines
+
+---
+*** New abnormal hook 'tab-bar-auto-width-functions'.
+This hook allows you to control which tab-bar tabs are auto-resized.
+
 \f
 * Editing Changes in Emacs 31.1
 
index 29bf2a957e82719bca799f605833726c0e4dc009..eb80e2c95fb64ab365893d9a53e777740ab4cbeb 100644 (file)
@@ -1244,6 +1244,18 @@ tab bar might wrap to the second line when it shouldn't.")
      tab-bar-tab-group-inactive)
   "Resize tabs only with these faces.")
 
+(defun tab-bar-auto-width-predicate-default (item)
+  "Accepts tab ITEM and returns non-nil for tabs and tab groups."
+  (string-match-p
+   ;; (rx bos (or "current-tab" "current-group" "tab-" "group-"))
+   "\\`\\(?:current-\\(?:group\\|tab\\)\\|\\(?:group\\|tab\\)-\\)"
+   (symbol-name (nth 0 item))))
+
+(defvar tab-bar-auto-width-functions '(tab-bar-auto-width-predicate-default)
+  "List of functions for `tab-bar-auto-width' to call with a tab ITEM.
+If any of these functions returns non-nil for a given tab ITEM, that
+tab's width will be auto-sized.")
+
 (defvar tab-bar--auto-width-hash nil
   "Memoization table for `tab-bar-auto-width'.")
 
@@ -1272,8 +1284,7 @@ be scaled for display on the current frame."
         (width 0))    ;; resize tab names to this width
     (dolist (item items)
       (when (and (eq (nth 1 item) 'menu-item) (stringp (nth 2 item)))
-        (if (memq (get-text-property 0 'face (nth 2 item))
-                  tab-bar-auto-width-faces)
+        (if (run-hook-with-args-until-success 'tab-bar-auto-width-functions item)
             (push item tabs)
           (unless (eq (nth 0 item) 'align-right)
             (setq non-tabs (concat non-tabs (nth 2 item)))))))