mirror of
https://github.com/wez/wezterm.git
synced 2024-12-28 07:55:03 +03:00
22 lines
432 B
Markdown
22 lines
432 B
Markdown
# Multiple
|
|
|
|
*Since: 20211204-082213-a66c61ee9*
|
|
|
|
Performs a sequence of multiple assignments. This is useful when you
|
|
want a single key press to trigger multiple actions.
|
|
|
|
The example below causes `LeftArrow` to effectively type `left`:
|
|
|
|
```lua
|
|
return {
|
|
keys = {
|
|
{key="LeftArrow", action={Multiple={
|
|
{SendKey={key="l"}},
|
|
{SendKey={key="e"}},
|
|
{SendKey={key="f"}},
|
|
{SendKey={key="t"}},
|
|
}}}
|
|
}
|
|
}
|
|
```
|