1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 23:04:49 +03:00
wezterm/docs/config/lua/keyassignment/RotatePanes.md

53 lines
1.3 KiB
Markdown
Raw Normal View History

2022-05-22 03:08:49 +03:00
# RotatePanes
2022-06-25 00:58:18 +03:00
*Since: 20220624-141144-bd1b7c5d*
2022-05-22 03:08:49 +03:00
Rotates the sequence of panes within the active tab, preserving the sizes based on the tab positions.
Panes within a tab have an ordering that follows the creation order of the splits.
As an example, if you have three panes created in sequence using horizontal
splits, their indices from left to right are `0, 1, 2`:
```
|--------|----|----|
| 0 | 1 | 2 |
|--------|----|----|
```
If you perform a clockwise rotation on that tab, the indices are rearranged
so that the panes are now `2, 0, 1`.
```
|--------|----|----|
| 2 | 0 | 1 |
|--------|----|----|
```
If you instead perform a counter-clockwise rotation then the indices are rearranged
so that the panes are now `1, 2, 0`
```
|--------|----|----|
| 1 | 2 | 0 |
|--------|----|----|
```
The sizes of original positions are preserved; as you can see from the examples
above, the left-most pane is still the largest of the panes despite rotating
the panes withing those placements.
```lua
local wezterm = require 'wezterm'
local act = wezterm.action
2022-05-22 03:08:49 +03:00
return {
keys = {
{key="b", mods="CTRL", action=act.RotatePanes("CounterClockwise")},
{key="n", mods="CTRL", action=act.RotatePanes("Clockwise")},
2022-05-22 03:08:49 +03:00
},
}
```
See also [PaneSelect](PaneSelect.md).