From 75ad085509b408422e7ecc901d1857367d6456f9 Mon Sep 17 00:00:00 2001 From: Dario Romagnoli Date: Wed, 30 Jan 2019 10:49:54 +0100 Subject: [PATCH] Enable renumbering of windows Update the numbering when a window is killed. --- sensible.tmux | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sensible.tmux b/sensible.tmux index 5cf2af6..d4a0afe 100755 --- a/sensible.tmux +++ b/sensible.tmux @@ -67,6 +67,8 @@ key_binding_not_changed() { main() { # OPTIONS + + # enable utf8 (option removed in tmux 2.2) tmux set-option -g utf8 on 2>/dev/null @@ -78,6 +80,11 @@ main() { tmux set-option -s escape-time 0 fi + # enable renumbering of windows + if option_value_not_changed "renumber-windows" "off"; then + tmux set-option -g renumber-windows on + fi + # increase scrollback buffer size if option_value_not_changed "history-limit" "2000"; then tmux set-option -g history-limit 50000