Let's assume I have split my Kitty terminal into 3 windows. How can I temporarily maximize the active one so it takes the whole terminal size hiding the non-active windows?
This is done with CTRL + SHIFT + X in Terminator.
Thanks.
asked Mar 22, 2023 at 14:47
Fernando Martin
7097 silver badges23 bronze badges
1 Answer 1
Ok, I've found how to achieve this.
First of all, 'stack' layout needs to be enabled. To do so, ensure it appears listed in enabled_layouts:
enabled_layouts vertical,stack
Then you simply need to add a map/shortcut to load/unload that 'stack' layout:
map kitty_mod+x toggle_layout stack
In my case, since kitty_mod is equal to CTRL+SHIFT, kitty_mod+x is the exact combination that I wanted.
answered Apr 25, 2023 at 8:23
Fernando Martin
7097 silver badges23 bronze badges
Sign up to request clarification or add additional context in comments.
1 Comment
Sam
Works like a charm. Many thanks.