summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-01-31 00:53:58 -0600
committerCase Duckworth2022-01-31 00:53:58 -0600
commit843a784d56dc19f1633adfed3fc39402fdc75624 (patch)
treec5904bcd19a2c99710d6dbabd8e495345a16105a
parentChange face-setting logic (diff)
downloademacs-843a784d56dc19f1633adfed3fc39402fdc75624.tar.gz
emacs-843a784d56dc19f1633adfed3fc39402fdc75624.zip
Change tab-bar display
-rw-r--r--init.el3
-rw-r--r--lisp/+tab-bar.el2
2 files changed, 3 insertions, 2 deletions
diff --git a/init.el b/init.el index f8228cf..40678a1 100644 --- a/init.el +++ b/init.el
@@ -632,7 +632,8 @@
632 tab-bar-tab-name-ellipsis truncate-string-ellipsis 632 tab-bar-tab-name-ellipsis truncate-string-ellipsis
633 tab-bar-show t 633 tab-bar-show t
634 tab-bar-close-button-show t 634 tab-bar-close-button-show t
635 tab-bar-close-button (propertize " ✕ " 'display t 635 tab-bar-close-button (propertize " ◦ "
636 'display t
636 'close-tab t) 637 'close-tab t)
637 tab-bar-new-button (propertize "+ " 'display t)) 638 tab-bar-new-button (propertize "+ " 'display t))
638 (tab-bar-mode +1) 639 (tab-bar-mode +1)
diff --git a/lisp/+tab-bar.el b/lisp/+tab-bar.el index b11be2c..bbfbcf8 100644 --- a/lisp/+tab-bar.el +++ b/lisp/+tab-bar.el
@@ -122,7 +122,7 @@ Used by `tab-bar-format-menu-bar'."
122 122
123(defun +tab-bar-format-menu-bar () 123(defun +tab-bar-format-menu-bar ()
124 "Produce the Menu button for the tab bar that shows the menu bar." 124 "Produce the Menu button for the tab bar that shows the menu bar."
125 `((menu-bar menu-item (propertize " Ɛ " 'face '+tab-bar-extra) 125 `((menu-bar menu-item (propertize " 𝜀 " 'face '+tab-bar-extra)
126 +tab-bar-menu-bar :help "Menu Bar"))) 126 +tab-bar-menu-bar :help "Menu Bar")))
127 127
128 128