如何设置GNU屏幕以允许鼠标滚轮在滚动缓冲区中滚动?我试着谷歌关于这一点,但大多数点击是关于如何允许屏幕内的应用程序使用滚轮。


当前回答

我相信你可以在~/.screenrc中添加这样一行:

termcapinfo xterm* ti@:te@

其中“xterm*”是当前TERM的glob匹配。为了确认它的工作,^A^D从屏幕分离,然后screen -d -r重新连接,然后ls几次,并尝试向后滚动。这对我很管用。


这是什么魔法?好吧,让我们查阅一下手册。

屏幕(1)表示:

termcapinfo term terminal-tweaks [window-tweaks]
  [..]
  The first argument specifies which terminal(s) should be affected by this
  definition. You can specify multiple terminal names by separating them with
  `|'s. Use `*' to match all terminals and `vt*' to match all terminals that
  begin with "vt".
  [..]
  Some examples:

      termcap xterm*  LP:hs@

  Informs screen that all terminals that begin with `xterm' have firm
  auto-margins that allow the last position on the screen to be updated (LP),
  but they don't really have a status line (no 'hs' -  append  `@'  to turn
  entries off).  Note that we assume `LP' for all terminal names that start
  with "vt", but only if you don't specify a termcap command for that terminal.

从termcap (5):

String capabilities
    [..]
    te   End program that uses cursor motion
    ti   Begin program that uses cursor motion

其他回答

在屏幕上,你必须首先进入“滚动模式”(或“复制模式”),才能在滚动缓冲区中滚动:组合键Ctrl-a Esc,或Ctrl-a Ctrl-[。然后,您可以使用上下键(或Ctrl-b, Ctrl-f来移动页面)滚动历史记录。

在这种模式下,你的鼠标滚轮也应该工作,如果它在其他应用程序中工作的话。 “scrollback mode”以Esc结束。

至于在不首先进入滚动模式的情况下滚动滚动滚动缓冲区,如果不修改屏幕,这可能是不可能的。除了滚动模式之外,我从未听说过访问滚动缓冲区的方法。

使用“Ubuntu 16.04.2 LTS”时的解决方案如下:

a).更新$HOME/。Screenrc与之前的答案一样指定:

termcapinfo xterm* ti@:te@

b).使用“设置”。“首选应用程序”更改默认终端为xterm,通过在下拉列表中选择“X终端”之一。

一些多余的注释

所有其他终端,包括安装“lxterminal”, 对我来说很有用,即使我把termcapinfo行改成了“*” 而不是xterm*。 通过单击屏幕左上角的菜单按钮,您可以 你可以使用右下角第三个图标进入设置对话框吗 角落里。

在运行屏幕之前,将TERM变量设置为vt100而不是xterm也可以。 我已经用了很长时间了,效果很好。

把这个添加到你的.bashrc中:

# make scrollbar / wheel scrolling work when running screen in gnome-terminal (or other)
if [ "$TERM" = "xterm" ]; then
  export TERM=vt100
fi

--

作为参考,我的.screenrc有这个(这个AFAIK不需要):

# Extend the vt100 desciption by some sequences.
termcap  vt100* ms:AL=\E[%dL:DL=\E[%dM:UP=\E[%dA:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC
terminfo vt100* ms:AL=\E[%p1%dL:DL=\E[%p1%dM:UP=\E[%p1%dA:DO=\E[%p1%dB:LE=\E[%p1%dD:RI=\E[%p1%dC

在GNU屏幕内的VIM中使用滚轮:

[vimrc。]

set mouse=a             " hold shift to copy xterm
set ttymouse=xterm2     " necessary for gnu screen & mouse

以下是我在Cygwin和Putty中使用的: 编辑.screenrc并添加

terminfo xterm* ti=:te=