diff options
author | Blaž Hrastnik | 2021-07-11 07:42:23 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-07-11 07:42:23 +0000 |
commit | 4a5cb0e04bf4861fe58ead4a83dc90a9f9940f1c (patch) | |
tree | afd8f37892a316566ce008756d33007f23fd469d | |
parent | d530d6e39d58f5759d2db0a9bda1ea5e21154f83 (diff) |
Restore C-w shortcut
-rw-r--r-- | helix-term/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 8bbdfdfa..3b208ca8 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -3750,7 +3750,7 @@ mode_info! { /// window window_mode, WINDOW_MODE, /// rotate - "w" => rotate_view, + "w" | "C-w" => rotate_view, /// horizontal split "h" => hsplit, /// vertical split |