We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-
1 parent c8a5a4f commit ad2061bCopy full SHA for ad2061b
book/src/remapping.md
@@ -94,7 +94,6 @@ Special keys are encoded as follows:
94
| Backspace | `"backspace"` |
95
| Space | `"space"` |
96
| Return/Enter | `"ret"` |
97
-| \- | `"minus"` |
98
| Left | `"left"` |
99
| Right | `"right"` |
100
| Up | `"up"` |
@@ -110,3 +109,14 @@ Special keys are encoded as follows:
110
109
| Escape | `"esc"` |
111
112
Keys can be disabled by binding them to the `no_op` command.
+
113
+All other keys such as `?`, `!`, `-` etc. can be used literally:
114
115
+```toml
116
+[keys.normal]
117
+"?" = ":write"
118
+"!" = ":write"
119
+"-" = ":write"
120
+```
121
122
+Note: `-` can't be used when combined with a modifier, for example `Alt` + `-` should be written as `A-minus`. `A--` is not accepted.
0 commit comments