docs: remove mention that - requires special handling (#12250)

This commit is contained in:
Nikita Revenco 2024-12-16 16:01:14 +00:00 committed by GitHub
parent 9b14750e56
commit 99fdbce566
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,7 +94,6 @@ ## Special keys and modifiers
| Backspace | `"backspace"` |
| Space | `"space"` |
| Return/Enter | `"ret"` |
| \- | `"minus"` |
| Left | `"left"` |
| Right | `"right"` |
| Up | `"up"` |
@ -110,3 +109,14 @@ ## Special keys and modifiers
| Escape | `"esc"` |
Keys can be disabled by binding them to the `no_op` command.
All other keys such as `?`, `!`, `-` etc. can be used literally:
```toml
[keys.normal]
"?" = ":write"
"!" = ":write"
"-" = ":write"
```
Note: `-` can't be used when combined with a modifier, for example `Alt` + `-` should be written as `A-minus`. `A--` is not accepted.