From 0d0d927fba9af49b4657782a0940fab2ee76eb96 Mon Sep 17 00:00:00 2001 From: "Lloyd W. Slade" Date: Sun, 3 Jun 2018 19:04:26 -0400 Subject: [PATCH] added pane resize with Shift-WASD --- f-keys | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/f-keys b/f-keys index c79966c..fb566c8 100644 --- a/f-keys +++ b/f-keys @@ -25,5 +25,12 @@ bind -n M-Right select-pane -R bind -n M-Up select-pane -U bind -n M-Down select-pane -D +# resize panes using Shift-WASD +bind-key S resize-pane -D 5 +bind-key W resize-pane -U 5 +bind-key A resize-pane -L 5 +bind-key D resize-pane -R 5 + + # reload config file bind r source-file ~/.tmux.conf