1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-28 09:12:19 +03:00
wezterm/docs/config/lua/keyassignment/ActivatePaneDirection.md

25 lines
771 B
Markdown
Raw Normal View History

# ActivatePaneDirection
*Since: 20201031-154415-9614e117*
`ActivatePaneDirection` activate an adjacent pane in the specified direction.
In cases where there are multiple adjacent panes in the intended direction,
wezterm will choose the pane that has the largest edge intersection.
```lua
local wezterm = require 'wezterm';
return {
keys = {
{ key = "LeftArrow", mods="CTRL|SHIFT",
action=wezterm.action{ActivatePaneDirection="Left"}},
{ key = "RightArrow", mods="CTRL|SHIFT",
action=wezterm.action{ActivatePaneDirection="Right"}},
{ key = "UpArrow", mods="CTRL|SHIFT",
action=wezterm.action{ActivatePaneDirection="Up"}},
{ key = "DownArrow", mods="CTRL|SHIFT",
action=wezterm.action{ActivatePaneDirection="Down"}},
}
}
```