Turn on tmux's automatic-rename
dblume

dblume commited on 2025-10-21 09:40:52
Showing 1 changed files, with 1 additions and 1 deletions.


I may have to be using multiple tmux windows more often now with
a command-line LLM AI like CopilotChat CLI. I may be ending up with
configurations like:

* Tmux Window 1:
  * Pane with Vim with subwindows.
  * Pane with entr doing automatic things on every save
* Tmux Window 2:
  * One big AI Chat session

So now it's esp. handy if the tmux status bar shows what's running
over in the offscreen windows, esp on the rare occasion I have to have a
3rd.
... ...
@@ -78,7 +78,7 @@ set -g status-left "#[fg=green]#{?#{!=:#{window_panes},1},pane #P/#{window_panes
78 78
 set -g status-justify centre
79 79
 set -g status-right '#[fg=green]%m/%d %H:%M#[default]'
80 80
 setw -g mode-keys vi
81
-setw -g automatic-rename off
81
+setw -g automatic-rename on
82 82
 setw -g aggressive-resize
83 83
 # For mouse wheel scrolling, but now have to hold shift when selecting text.
84 84
 set -g mouse on
85 85