Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'book/src/remapping.md')
-rw-r--r--book/src/remapping.md12
1 files changed, 11 insertions, 1 deletions
diff --git a/book/src/remapping.md b/book/src/remapping.md
index e3baee13..4eb14c55 100644
--- a/book/src/remapping.md
+++ b/book/src/remapping.md
@@ -94,7 +94,6 @@ Special keys are encoded as follows:
| Backspace | `"backspace"` |
| Space | `"space"` |
| Return/Enter | `"ret"` |
-| \- | `"minus"` |
| Left | `"left"` |
| Right | `"right"` |
| Up | `"up"` |
@@ -110,3 +109,14 @@ Special keys are encoded as follows:
| 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.