We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d027361 commit dd8fcd7Copy full SHA for dd8fcd7
book/src/keymap.md
@@ -353,6 +353,21 @@ with modal editors.
353
| `Home` | Move to line start | `goto_line_start` |
354
| `End` | Move to line end | `goto_line_end_newline` |
355
356
+If you want to disable them in insert mode as you become more comfortable with modal editing, you can use
357
+the following in your `config.toml`:
358
+
359
+```toml
360
+[keys.insert]
361
+up = "no_op"
362
+down = "no_op"
363
+left = "no_op"
364
+right = "no_op"
365
+pageup = "no_op"
366
+pagedown = "no_op"
367
+home = "no_op"
368
+end = "no_op"
369
+```
370
371
## Select / extend mode
372
373
This mode echoes Normal mode, but changes any movements to extend
0 commit comments