diff --git a/docs/config/keybind/index.mdx b/docs/config/keybind/index.mdx index e6379db1..7b48355e 100644 --- a/docs/config/keybind/index.mdx +++ b/docs/config/keybind/index.mdx @@ -88,7 +88,7 @@ Make the keybind apply to all terminal surfaces. By default, keybinds only apply to the focused terminal surface. If this is true, then the keybind will be sent to all terminal surfaces. This only applies to actions that are surface-specific. For actions that -are already global (i.e. `quit`), this prefix has no effect. +are already global (e.g. `quit`), this prefix has no effect. #### `global:` @@ -160,6 +160,6 @@ for a complete list. Ghostty supports dozens of actions. |--------|-------------| | `ignore` | Do nothing, ignore the key input. This can be used to black hole certain inputs to have no effect and no encoding. | | `unbind` | Remove the binding. This makes it so the previous action is removed, and the key will be sent through to the child command if it is printable. | -| `text:text` | Send a string. Uses Zig string literal syntax. i.e. `text:\x15` sends Ctrl-U. By using a prefix of `\x1b[` you can send control sequences but the convenience actions `csi:` and `esc:` are recommended instead. | -| `csi:text` | Send a CSI sequence. i.e. `csi:A` sends "cursor up". | -| `esc:text` | Send an escape sequence. i.e. `esc:d` deletes to the end of the word to the right. | +| `text:text` | Send a string. Uses Zig string literal syntax. e.g. `text:\x15` sends Ctrl-U. By using a prefix of `\x1b[` you can send control sequences but the convenience actions `csi:` and `esc:` are recommended instead. | +| `csi:text` | Send a CSI sequence. e.g. `csi:A` sends "cursor up". | +| `esc:text` | Send an escape sequence. e.g. `esc:d` deletes to the end of the word to the right. |