From 4a5bf2f491fb49e32c366cb3225b134e7e8a91d3 Mon Sep 17 00:00:00 2001 From: Mitch Tishmack Date: Wed, 11 Feb 2015 10:29:03 -0600 Subject: [PATCH] Fix tmux startup oops regarding mouse mode initial setting. --- tmux/.tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 0095010..24ef71c 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -77,7 +77,7 @@ bind-key s \ # same thing as ^ so it sets up things if we were started with # something else that set synchronization. if-shell \ - "tmux show-window-options | grep 'synchronize-panes on'" \ + "tmux show-window-options | grep 'synchronize-panes on' || /bin/true" \ "set-window-option window-status-current-bg red; \ set-window-option pane-active-border-fg yellow; \ set-window-option pane-active-border-bg red"