1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 03:39:16 +03:00

docs: more SendString

Bleh, forgot to amend this before pushing the last commit.

closes: https://github.com/wez/wezterm/issues/253
This commit is contained in:
Wez Furlong 2020-08-16 08:28:45 -07:00
parent 609c707e91
commit 0c7945792d

View File

@ -493,7 +493,9 @@ return {
You can also emit escape sequences using `SendString`. This example shows
how to bind Alt-LeftArrow/RightArrow to the Alt-b/f, an emacs style
keybinding for moving backwards/forwards through a word in a line editor:
keybinding for moving backwards/forwards through a word in a line editor.
`\x1b` is the ESC character:
```lua
local wezterm = require 'wezterm';