tmux 加大缓冲区大小
永久配置
$ vim ~/.tmux.conf
+ set -g history-limit 5000
# 注:默认为2000行,这里设置为5000行
动态配置
$ tmux set-option history-limit 5000
$ tmux
运行时配置
$ tmux
<C-B> :set-option history-limit 5000
永久配置
$ vim ~/.tmux.conf
+ set -g history-limit 5000
# 注:默认为2000行,这里设置为5000行
动态配置
$ tmux set-option history-limit 5000
$ tmux
运行时配置
$ tmux
<C-B> :set-option history-limit 5000