[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Tab bar tabs landed on master
From: |
Juri Linkov |
Subject: |
Re: Tab bar tabs landed on master |
Date: |
Mon, 07 Oct 2019 23:23:46 +0300 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (x86_64-pc-linux-gnu) |
> Any way. I have suggested in a Telegram group to try the new tab bar
> functionality from master and they are enjoying it.
Thanks.
> There is only a complain from a which-key user. When the which-key
> panel activates the tab bar displays which-key in it's name. It is not
> something critical, but is it there a simple way to correct this?
It's possible to use the same fix as recently committed for speedbar:
--- a/lisp/speedbar.el
+++ b/lisp/speedbar.el
@@ -1115,7 +1115,9 @@ speedbar-mode
(setq dframe-track-mouse-function #'speedbar-track-mouse))
(setq dframe-help-echo-function #'speedbar-item-info
dframe-mouse-click-function #'speedbar-click
- dframe-mouse-position-function #'speedbar-position-cursor-on-line))
+ dframe-mouse-position-function #'speedbar-position-cursor-on-line)
+ (setq-local tab-bar-mode nil)
+ (setq-local tab-line-format nil))
speedbar-buffer)
This will remove tabs from which-key windows. But maybe you meant
removing the name of the which-key buffer from the tab name?
This will be possible with a new defcustom that I'll finish soon.
Re: Tab bar tabs landed on master, Stefan Kangas, 2019/10/02
Re: Tab bar tabs landed on master, Robert Pluim, 2019/10/03
Re: Tab bar tabs landed on master, Stefan Kangas, 2019/10/07
Re: Tab bar tabs landed on master, Stefan Kangas, 2019/10/07
- Re: Tab bar tabs landed on master, Ergus, 2019/10/07
- Re: Tab bar tabs landed on master,
Juri Linkov <=
- Re: Tab bar tabs landed on master, Ergus, 2019/10/07
- Re: Tab bar tabs landed on master, Zach Pearson, 2019/10/07
- Re: Tab bar tabs landed on master, Juri Linkov, 2019/10/07
- Re: Tab bar tabs landed on master, Eli Zaretskii, 2019/10/08
- Re: Tab bar tabs landed on master, Juri Linkov, 2019/10/09
- Re: Tab bar tabs landed on master, Eli Zaretskii, 2019/10/10
Re: Tab bar tabs landed on master, Eli Zaretskii, 2019/10/07
Re: Tab bar tabs landed on master, Juri Linkov, 2019/10/07
Re: Tab bar tabs landed on master, Juri Linkov, 2019/10/20