From d13bdce14e0d67ebd458571425be4840f63ef72f Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Fri, 6 Dec 2024 11:34:32 +0100 Subject: [PATCH] fix: tmux control character to Ctrl+Spacebar --- .tmux.conf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 249dc29..83570a3 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -2,17 +2,16 @@ set -g default-terminal "screen-256color" # Resize to smallest attached client -#set -g window-size smallest +set -g window-size smallest # Enable mouse support set -g mouse on -# Set the control character to Ctrl+Spacebar (instead of Ctrl+B) +# Set control character to Ctrl+Spacebar set -g prefix C-space -set -g prefix F1 #unbind-key C-b bind-key C-space send-prefix -bind-key F1 send-prefix +#bind-key F1 send-prefix # Set new panes to open in current directory bind c new-window -c "#{pane_current_path}"