From 77bcdd5aac7481e4f160eeb3935c4893ce459460 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sun, 29 Jun 2025 10:11:44 +0200 Subject: [PATCH] tmux/kill-server --- sh/tmux.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sh/tmux.sh b/sh/tmux.sh index a29ec26..477547f 100644 --- a/sh/tmux.sh +++ b/sh/tmux.sh @@ -221,12 +221,15 @@ bind-key C-w command-prompt { rename-window '%%' } bind-key h split-window -h bind-key v split-window -v -# toggle mouse -bind-key t set-option -g mouse \\; display-message 'mouse = #{mouse}' +# kill server +bind-key k kill-server # reload configuration bind-key r source-file ${file} \\; display-message 'source-file ${file}' +# toggle mouse +bind-key t set-option -g mouse \\; display-message 'mouse = #{mouse}' + # swap window bind-key M-Left swap-window -t -1 bind-key M-Right swap-window -t +1 @@ -239,6 +242,7 @@ bind-key M-Right swap-window -t +1 # │ command-prompt │ │ │ │ : │ # │ copy-mode │ │ │ │ PPage │ # │ detach-client │ F6 │ │ │ d │ +# │ kill-server │ │ k │ │ │ # │ new-session │ │ │ │ │ # │ new-window │ F2 │ │ │ c │ # │ next-window │ M-Right │ │ │ n │