Skip to content

Commit

Permalink
Display ⌘ for tab hints
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Jan 17, 2025
1 parent 067f3e3 commit 6039e3c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions after-init.el
Original file line number Diff line number Diff line change
Expand Up @@ -1411,9 +1411,18 @@ language."
(concat
(propertize " " 'display '((space :width 8))
'face (funcall tab-bar-tab-face-function tab))
(tab-bar-tab-name-format-default tab i)
(let ((tab-bar-tab-hints (unless (eq tab-bar-tab-hints 'mac)
tab-bar-tab-hints)))
(tab-bar-tab-name-format-default tab i))
(propertize " " 'display '((space :width 8))
'face (funcall tab-bar-tab-face-function tab))))
'face (funcall tab-bar-tab-face-function tab))
(when (and (eq tab-bar-tab-hints 'mac)
(< i 9))
(concat
(propertize (format "%d " i)
'face (funcall tab-bar-tab-face-function tab))
(propertize " " 'display '((space :width 2))
'face (funcall tab-bar-tab-face-function tab))))))

:custom
(tab-bar-separator (propertize "|"
Expand All @@ -1423,7 +1432,7 @@ language."
(tab-bar-format '(tab-bar-format-tabs
(lambda () " ")))
(tab-bar-auto-width nil)
(tab-bar-tab-hints t)
(tab-bar-tab-hints 'mac)
(tab-bar-close-button-show nil)
(tab-bar-new-button-show nil)
(tab-bar-new-tab-choice 'clone)
Expand Down

0 comments on commit 6039e3c

Please sign in to comment.