mirror of
https://github.com/wez/wezterm.git
synced 2025-01-01 18:22:13 +03:00
f37c3ae5da
* Update ssh_backend.md * Update normalize_output_to_unicode_nfc.md * Update strikethrough_position.md * Update underline_position.md * Update underline_thickness.md * Fix lua config docs titles to be formatted as inline code * Mention how suggested alphabet for quick select is choosen * Mention update-status and update-right-status for status_update_interval * Fix docs for all keyassignments to be formatted as inline code * Fix Lua object index titles * Fix titles of `wezterm.*` module index pages * Fix title of `Color` object & `wezterm.color` functions We reduce titles from h2 to h1 because mkdocs defaults the page title to the page file name if no h1 header is found. * Unify title of all object methods * Add index page for Gui events
27 lines
759 B
Markdown
27 lines
759 B
Markdown
# `ActivateTabRelativeNoWrap`
|
|
|
|
{{since('20220101-133340-7edc5b5a')}}
|
|
|
|
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'
|
|
local act = wezterm.action
|
|
local config = {}
|
|
|
|
config.keys = {
|
|
{ key = '{', mods = 'ALT', action = act.ActivateTabRelativeNoWrap(-1) },
|
|
{ key = '}', mods = 'ALT', action = act.ActivateTabRelativeNoWrap(1) },
|
|
}
|
|
return config
|
|
```
|
|
|
|
|