diff options
author | Omnikar | 2021-11-10 02:04:03 +0000 |
---|---|---|
committer | GitHub | 2021-11-10 02:04:03 +0000 |
commit | 565490913510d9f4423a398f7d04def693cd12ae (patch) | |
tree | ef358c22c7c469d71f281ab42ed72dbbedcaddfe /helix-term/src | |
parent | cf831b1a65625f29d6e1bc12483a45c1adc8dff4 (diff) |
Update `space w` window mode (#1050)
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/keymap.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/helix-term/src/keymap.rs b/helix-term/src/keymap.rs index d497401f..593ff0f0 100644 --- a/helix-term/src/keymap.rs +++ b/helix-term/src/keymap.rs @@ -573,9 +573,13 @@ impl Default for Keymaps { "'" => last_picker, "w" => { "Window" "C-w" | "w" => rotate_view, - "C-h" | "h" => hsplit, + "C-s" | "s" => hsplit, "C-v" | "v" => vsplit, "C-q" | "q" => wclose, + "C-h" | "h" | "left" => jump_view_left, + "C-j" | "j" | "down" => jump_view_down, + "C-k" | "k" | "up" => jump_view_up, + "C-l" | "l" | "right" => jump_view_right, }, "y" => yank_joined_to_clipboard, "Y" => yank_main_selection_to_clipboard, |