mirror of https://github.com/helix-editor/helix
Make `v` in select mode switch back to normal mode (#660)
* Make `v` in select mode switch back to normal mode * Move select mode toggle to keymap instead of commandpull/663/head
parent
fa4caf7e3d
commit
bfce4d4f29
|
@ -529,6 +529,8 @@ impl Default for Keymaps {
|
||||||
"home" => goto_line_start,
|
"home" => goto_line_start,
|
||||||
"end" => goto_line_end,
|
"end" => goto_line_end,
|
||||||
"esc" => exit_select_mode,
|
"esc" => exit_select_mode,
|
||||||
|
|
||||||
|
"v" => normal_mode,
|
||||||
}));
|
}));
|
||||||
let insert = keymap!({ "Insert mode"
|
let insert = keymap!({ "Insert mode"
|
||||||
"esc" => normal_mode,
|
"esc" => normal_mode,
|
||||||
|
|
Loading…
Reference in New Issue