about summary refs log tree commit diff
path: root/scripts/chat.tmux.conf
diff options
context:
space:
mode:
authorKlemens Nanni <klemens@posteo.de>2021-06-15 21:33:50 +0000
committerJune McEnroe <june@causal.agency>2021-06-17 11:37:40 -0400
commit948e6d547989ac88525c07b9771667e53088aafe (patch)
treecb08baa6caf60c528db9a875eab12c92b0f9c881 /scripts/chat.tmux.conf
parentSend PINGs when server is quiet and die if no response (diff)
downloadcatgirl-948e6d547989ac88525c07b9771667e53088aafe.tar.gz
catgirl-948e6d547989ac88525c07b9771667e53088aafe.zip
chat.tmux.conf: Make window selection hotkeys match window numbers
The 'pick chat network' binding on F1 lists tmux windows as follows
and tmux's `choose-tree -Z' lets you jump to the window by pressing the
key denoted inside parantheses.

Set `base-index 1' so as to make window indices match up the hotkey
number instead of being off-by-one due to the session itself being the
first entry in the list.

  (0)   - chat-5: 8 windows (group chat: chat-0,chat-1,chat-2,chat-3,chat-4,chat-5,chat-6) (attached)
  (1)   ├─>   1: hackint: "example.com"
  (2)   ├─>   2: efnet: "example.com"
  ...

PS: Update existing sessions by updating chat.tmux.conf, pressing F5
then running `prefix-: move-window -r' to renumber all windows.
Diffstat (limited to 'scripts/chat.tmux.conf')
-rw-r--r--scripts/chat.tmux.conf3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/chat.tmux.conf b/scripts/chat.tmux.conf
index 9d4b238..4be7faa 100644
--- a/scripts/chat.tmux.conf
+++ b/scripts/chat.tmux.conf
@@ -20,6 +20,9 @@ set-option -g	-- automatic-rename	off
 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
+
 
 # clients exit on network errors, restart them automatically
 # (use `kill-pane'/`C-b x' to destroy windows)