From 4a5cb0e04bf4861fe58ead4a83dc90a9f9940f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Sun, 11 Jul 2021 16:42:23 +0900 Subject: [PATCH] Restore C-w shortcut --- helix-term/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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