From fa2147300a59675dad004fdb306f34bee593b484 Mon Sep 17 00:00:00 2001 From: Jeff LANCE Date: Thu, 4 Mar 2021 20:46:11 +0100 Subject: [PATCH] correct error on setting session options as there is no started session when tmux is started --- conf/tmux.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/tmux.conf b/conf/tmux.conf index 6225ce0..ddd7680 100644 --- a/conf/tmux.conf +++ b/conf/tmux.conf @@ -11,9 +11,9 @@ set -g default-terminal "screen-256color" # colors! setw -g xterm-keys on -set -s escape-time 10 # faster command sequences +set -sg escape-time 10 # faster command sequences set -sg repeat-time 600 # increase repeat timeout -set -s focus-events on +set -sg focus-events on set -g prefix2 C-a # GNU-Screen compatible prefix bind C-a send-prefix -2