2021-12-23 19:32:49 +03:00
|
|
|
# ActivateTabRelativeNoWrap
|
|
|
|
|
2022-01-01 22:56:23 +03:00
|
|
|
*Since: 20220101-133340-7edc5b5a*
|
2021-12-23 19:32:49 +03:00
|
|
|
|
|
|
|
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
|
2022-06-25 16:58:10 +03:00
|
|
|
local wezterm = require 'wezterm'
|
|
|
|
local act = wezterm.action
|
|
|
|
|
2021-12-23 19:32:49 +03:00
|
|
|
return {
|
|
|
|
keys = {
|
2022-07-19 17:54:31 +03:00
|
|
|
{ key = '{', mods = 'ALT', action = act.ActivateTabRelativeNoWrap(-1) },
|
|
|
|
{ key = '}', mods = 'ALT', action = act.ActivateTabRelativeNoWrap(1) },
|
|
|
|
},
|
2021-12-23 19:32:49 +03:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|