emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Tab bar tabs landed on master


From: Ergus
Subject: Re: Tab bar tabs landed on master
Date: Wed, 2 Oct 2019 01:27:41 +0200
User-agent: NeoMutt/20180716

Hi Juri:

I'm amazed with the new tabs, very thanks!

I would like to ask you the possibility to make the tab-bar-switch-*
commands cyclic (after last go to first) even if not by default? The
problem is that in xterm (and related) it is not possible to sent
C-S-TAB, so in some cases (few tabs) it will be good enough to repeat
C-TAB. Even without this xterm issues it is easier to repeat C-TAB 2 or
3 times than changing the hands to type C-S-TAB.

Very thanks in advance,
Ergus.

On Wed, Oct 02, 2019 at 01:28:57AM +0300, Juri Linkov wrote:
Enabling tab-bar-mode grows the frame's height (not always, just the first
time). Disabling the mode does not shrink it. Is that intended?

Is this on Windows?

(let ((initial (assq 'outer-size (frame-geometry))))
  (tab-bar-mode 1)
  (tab-bar-mode 0)
  (list (assq 'outer-size (frame-geometry)) initial))

=>  ((outer-size 689 . 687) (outer-size 689 . 671))

On GNU/Linux it's correct:

=>  ((outer-size 678 . 633) (outer-size 678 . 633))

OTOH, for the tool-bar the problem exists:

(let ((initial (assq 'outer-size (frame-geometry))))
 (tool-bar-mode 1)
 (tool-bar-mode 0)
 (list (assq 'outer-size (frame-geometry)) initial))

=>  ((outer-size 678 . 587) (outer-size 678 . 633))

in both Emacs 27 and GNU Emacs 25.2 (x86_64-pc-linux-gnu, GTK+ Version 3.22.21)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]