mirror of
https://github.com/wez/wezterm.git
synced 2024-12-29 16:42:13 +03:00
6a265d9f72
refs: #1414
25 lines
707 B
Markdown
25 lines
707 B
Markdown
# ActivateTabRelativeNoWrap
|
|
|
|
*Since: nightly builds only*
|
|
|
|
Activate a tab relative to the current tab. The argument value specifies an
|
|
offset. eg: `-1` activates the tab to the left of the current tab, while `1`
|
|
activates the tab to the right.
|
|
|
|
This is almost identical to [ActivateTabRelative](ActivateTabRelative.md)
|
|
but this one will not wrap around; for example, if the first tab is active
|
|
`ActivateTabRelativeNoWrap=-1` will not move to the last tab and vice versa.
|
|
|
|
|
|
```lua
|
|
local wezterm = require 'wezterm';
|
|
return {
|
|
keys = {
|
|
{key="{", mods="ALT", action=wezterm.action{ActivateTabRelativeNoWrap=-1}},
|
|
{key="}", mods="ALT", action=wezterm.action{ActivateTabRelativeNoWrap=1}},
|
|
}
|
|
}
|
|
```
|
|
|
|
|