当前位置: 首页 > 工具软件 > Split Screen > 使用案例 >

Linux screen设置缓冲区大小/历史记录长度

佟阳飙
2023-12-01

screen -h 10000指定缓冲区大小需要手动输入参数,很麻烦,虽然可以alias screen="screen -h 1000",但只能设置screen的第一个窗口的缓冲区大小。

~/.screenrc中添加:

defscrollback 10000
termcapinfo xterm ti@:te@

defscrollback 100000:将默认回滚行数设置为 10000
termcapinfo xterm ti@:te@:允许在xterm或PuTTY中滚动终端。

附录

.screenrc常用设置

# 缓冲区行数
defscrollback 10000

# 支持鼠标滚轮
termcapinfo xterm ti@:te@

# 不显示欢迎屏幕
startup_message off

# 关闭闪屏
vbell off

# 状态栏
hardstatus alwayslastline
hardstatus string '%{= kg}[%{G}%H%{-}][ %{C}%-Lw%{+b g}[%{r}%n %{Y}%t%{-b g}]%{C}%+Lw%= %{G}][ %{C}S:%{b}(F1)[] (F2)< (F3)> (F4)<> %{C}V:%{b}(F5)| (F6)- (F7)> (F8)x %{kg}][ %Y/%m/%d %{G}%c %{g}]'

# 快捷键
# 窗口
bindkey -k k1 title
bindkey -k k2 prev
bindkey -k k3 next
bindkey -k k4 other
# 视图拆分
bindkey -k k5 split -v
bindkey -k k6 split
bindkey -k k7 focus
bindkey -k k8 remove
# 备用
#bindkey -k k9 other
#bindkey -k k; other
#bindkey -k F1 other
#bindkey -k F2 other

# 默认窗口名
#sessionname trainer

参考

https://www.gnu.org/software/screen/manual/screen.html
https://gist.github.com/mosquito/d109e44a2c6884c34f9c

 类似资料: