Skip to content

Commit

Permalink
add example config for all removed insert mode bindings (helix-editor…
Browse files Browse the repository at this point in the history
  • Loading branch information
dead10ck authored and Shekhinah Memmel committed Dec 11, 2022
1 parent 351f80d commit e726097
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions book/src/keymap.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,25 @@ mode:

```toml
[keys.insert]
up = "move_line_up"
down = "move_line_down"
left = "move_char_left"
right = "move_char_right"
"up" = "move_line_up"
"down" = "move_line_down"
"left" = "move_char_left"
"right" = "move_char_right"
"C-b" = "move_char_left"
"C-f" = "move_char_right"
"A-b" = "move_prev_word_end"
"C-left" = "move_prev_word_end"
"A-f" = "move_next_word_start"
"C-right" = "move_next_word_start"
"A-<" = "goto_file_start"
"A->" = "goto_file_end"
"pageup" = "page_up"
"pagedown" = "page_down"
"home" = "goto_line_start"
"C-a" = "goto_line_start"
"end" = "goto_line_end_newline"
"C-e" = "goto_line_end_newline"
"A-left" = "goto_line_start"
```

## Select / extend mode
Expand Down

0 comments on commit e726097

Please sign in to comment.