如何讓tmux從1而不是0開始計數視窗?

如何讓tmux從1而不是0開始計數視窗?

我能夠使用 .screenrc 中的以下程式碼讓 GNU Screen 開始使用數字 1 而不是預設的 0 來計數視窗:

# Get rid of screen 0
bind c screen 1
bind ^c screen 1
bind 0 select 10

當我在 .screenrc 中建立視窗時,我使用的screen 1方法是先嘗試 1,然後在該視窗號被佔用時進行計數。

答案1

解決辦法是修改~/.tmux.conf為:

# Start windows and panes at 1, not 0
set -g base-index 1
setw -g pane-base-index 1

編輯:與base-index不同,pane-base-index是一個視窗選項,因此應該使用setw,正如@Jogusa指出的那樣。

相關內容