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),