diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-10 12:54:47 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-10 12:54:47 -0500 |
| commit | 9910d6cd53061929cd65b6018f24814da3276957 (patch) | |
| tree | 5b78fdd420d4cc7ae9afdbe2d6cf9c490bd94f3f /dotfiles/common | |
| parent | 9e307bea96b26f1ed22e4a35ac0982012848c376 (diff) | |
| download | archsetup-9910d6cd53061929cd65b6018f24814da3276957.tar.gz archsetup-9910d6cd53061929cd65b6018f24814da3276957.zip | |
chore(tmux): double scrollback to 100000 lines
Long-running tmux+vterm sessions (Claude Code's TUI in particular) run past 50k lines often enough that the C-; x C tmux-history-copy command in Emacs can't reach the start. Bump history-limit so `tmux capture-pane' has more room; the cost is roughly 7.5 MB per pane, so a six-pane session adds well under 100 MB total.
Existing panes keep their current buffer; the new limit applies only to panes created after the reload.
Diffstat (limited to 'dotfiles/common')
| -rw-r--r-- | dotfiles/common/.tmux.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/common/.tmux.conf b/dotfiles/common/.tmux.conf index ea3bc0d..93a3238 100644 --- a/dotfiles/common/.tmux.conf +++ b/dotfiles/common/.tmux.conf @@ -72,7 +72,7 @@ bind C-n next-window bind W last-window # increase scrollback buffer -set-option -g history-limit 50000 +set-option -g history-limit 100000 # don't allow suspending client unbind-key C-z |
