From cc130f0c4da9b1f702240fc8b2e34bba90ad6990 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 19 Aug 2025 15:35:22 +0100 Subject: [PATCH] Add kill-window binding --- tmux.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tmux.conf b/tmux.conf index 66b15cb..c072dae 100644 --- a/tmux.conf +++ b/tmux.conf @@ -75,6 +75,9 @@ bind I display-popup -S fg=#54546D -b rounded -d '#{pane_current_path}' -E '$SHE bind C-n next-window bind C-p previous-window +# Kill current window +bind W kill-window + # Make new splits open in current directory bind '"' split-window -c '#{pane_current_path}' bind '%' split-window -h -c '#{pane_current_path}'