Add a new action :ref:detach_window that can be used to move the current window into a different tab

Fixes #1310
This commit is contained in:
Kovid Goyal
2019-11-11 15:47:48 +05:30
parent 18619b14ac
commit 35ab7eb472
4 changed files with 41 additions and 5 deletions

View File

@@ -7,6 +7,9 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
0.15.0 [future]
--------------------
- Add a new action :ref:`detach_window` that can be used to move the current
window into a different tab (:iss:`1310`)
- Add a new style ``powerline`` for tab bar rendering, see :opt:`tab_bar_style` (:pull:`2021`)
- Allow changing colors by mapping a keyboard shortcut to read a kitty config

View File

@@ -173,6 +173,15 @@ You can also define a shortcut to switch to the previously active window::
``nth_window`` will focus the nth window for positive numbers and the
previously active windows for negative numbers.
.. _detach_window:
Finally you can define shortcuts to detach the current window and
move it to another tab or another OS window::
map ctrl+f2 detach_window # moves the window into a new OS window
map ctrl+f3 detach_window new-tab # moves the window into a new Tab
map ctrl+f4 detach_window ask # asks which tab to move the window into
Other keyboard shortcuts
----------------------------------