From 1b2af8e6fc84e13be71213042ee194aab192d857 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 10 May 2026 12:54:47 -0500 Subject: 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. --- dotfiles/common/.tmux.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3