mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 02:46:17 +04:00
add example config for all removed insert mode bindings (#3827)
This commit is contained in:
parent
16b9a1841f
commit
0d8ffa6b4a
@ -341,10 +341,25 @@ ## Insert 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
|
||||
|
Loading…
Reference in New Issue
Block a user