diff options
author | Klemens Nanni <klemens@posteo.de> | 2021-07-08 22:42:17 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-07-15 14:43:30 -0400 |
commit | 773d5bbdc006077e93ee5e3dc54f3c8ae6f15f33 (patch) | |
tree | 8b6a7285c497004ff7e60677f6bae08575004b1b /scripts | |
parent | Use /ns in manual example (diff) | |
download | catgirl-773d5bbdc006077e93ee5e3dc54f3c8ae6f15f33.tar.gz catgirl-773d5bbdc006077e93ee5e3dc54f3c8ae6f15f33.zip |
chat.tmux.conf: Fix base-index setting
"base-index" expects integer values, tmux prints a warning at load-time but otherwise ignores the configuration line.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/chat.tmux.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/chat.tmux.conf b/scripts/chat.tmux.conf index 4be7faa..3489a19 100644 --- a/scripts/chat.tmux.conf +++ b/scripts/chat.tmux.conf @@ -21,7 +21,7 @@ set-option -g -- allow-rename off set-option -g -- set-titles off set-option -g -- renumber-windows on # for the F1 binding, make hotkeys match window numbers -set-option -g -- base-index on +set-option -g -- base-index 1 # clients exit on network errors, restart them automatically |