Unnamed repository; edit this file 'description' to name the repository.
docs: add encodings for < and > literals in remapping (#14144)
Currently docs do not include the remappings for literal < or >, which can be important characters for macros relating to markup languages.
| -rw-r--r-- | book/src/remapping.md | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/book/src/remapping.md b/book/src/remapping.md index 23bb80c5..9a9a611a 100644 --- a/book/src/remapping.md +++ b/book/src/remapping.md @@ -89,24 +89,26 @@ Cmd-s = ":write" # Cmd or Win or Meta and 's' to write Special keys are encoded as follows: -| Key name | Representation | -| --- | --- | -| Backspace | `"backspace"` | -| Space | `"space"` | -| Return/Enter | `"ret"` | -| Left | `"left"` | -| Right | `"right"` | -| Up | `"up"` | -| Down | `"down"` | -| Home | `"home"` | -| End | `"end"` | -| Page Up | `"pageup"` | -| Page Down | `"pagedown"` | -| Tab | `"tab"` | -| Delete | `"del"` | -| Insert | `"ins"` | -| Null | `"null"` | -| Escape | `"esc"` | +| Key name | Representation | +| --- | --- | +| Backspace | `"backspace"` | +| Space | `"space"` | +| Return/Enter | `"ret"` | +| Left | `"left"` | +| Right | `"right"` | +| Up | `"up"` | +| Down | `"down"` | +| Home | `"home"` | +| End | `"end"` | +| Page Up | `"pageup"` | +| Page Down | `"pagedown"` | +| Tab | `"tab"` | +| Delete | `"del"` | +| Insert | `"ins"` | +| Null | `"null"` | +| Escape | `"esc"` | +| Less Than (<) | `"lt"` | +| Greater Than (>) | `"gt"` | Keys can be disabled by binding them to the `no_op` command. |