From 51e84faa274c057ea66b5c7a521b3fd713e78ecb Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Mon, 21 Nov 2022 11:36:14 +0100 Subject: [PATCH] [Newm] Remove unused keybindings --- .config/newm/config.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.config/newm/config.py b/.config/newm/config.py index 0cce99a..73a2d0d 100644 --- a/.config/newm/config.py +++ b/.config/newm/config.py @@ -156,10 +156,6 @@ def key_bindings(layout: Layout) -> list[tuple[str, Callable[[], Any]]]: (leader + "w T", lambda: layout.move_focused_view(0, 1)), (leader + "w S", lambda: layout.move_focused_view(0, -1)), (leader + "w R", lambda: layout.move_focused_view(1, 0)), - (leader + "w C-c", lambda: layout.resize_focused_view(-1, 0)), - (leader + "w C-t", lambda: layout.resize_focused_view(0, 1)), - (leader + "w C-s", lambda: layout.resize_focused_view(0, -1)), - (leader + "w C-r", lambda: layout.resize_focused_view(1, 0)), (leader + "b d", layout.close_focused_view), (leader + "q l", lambda: layout.ensure_locked(dim=False)), (leader + "q q", layout.terminate),