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


当前回答

Jon Z提到的那篇优秀的文章已经不再可用,但我能够从谷歌缓存中找到它的纯文本版本。我把它保存在这里,以防将来谷歌也把它掉了。原来的帖子是由Mikael Ståldal所以功劳是应得的。

--

如何在GNU屏幕中使用鼠标滚轮

GNU Screen支持滚动,但是默认情况下你必须使用笨拙的键来使用它。我希望能够使用Shift-PageUp, Shift-PageDown和鼠标滚轮来滚动,就像你可以在xterm中做的那样。

为此配置Screen并不容易,而且涉及到与终端模拟器的合作。但我最终还是找到了一个很好的解决方案。将此添加到~/。Xresources文件(你需要注销才能生效):

XTerm*saveLines: 0
XTerm*vt100.translations: #override \n\
  Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  Lock Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  Lock @Num_Lock Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  @Num_Lock Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  <Btn4Down>: string(0x1b) string("[5S") \n\
  Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  Lock Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  Lock @Num_Lock Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  @Num_Lock Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  <Btn5Down>: string(0x1b) string("[5T") \n\
  Shift <KeyPress> Prior: string(0x1b) string("[25S") \n\
  Shift <KeyPress> Next: string(0x1b) string("[25T") \n

然后将其添加到~/。screenrc文件:

defscrollback 1000

# Scroll up
bindkey -d "^[[5S" eval copy "stuff 5\025"
bindkey -m "^[[5S" stuff 5\025

# Scroll down
bindkey -d "^[[5T" eval copy "stuff 5\004"
bindkey -m "^[[5T" stuff 5\004

# Scroll up more
bindkey -d "^[[25S" eval copy "stuff \025"
bindkey -m "^[[25S" stuff \025

# Scroll down more
bindkey -d "^[[25T" eval copy "stuff \004"
bindkey -m "^[[25T" stuff \004

这在xterm中是有效的。我不确定它是否适用于其他终端模拟器。

注意,这将禁用xterm中的正常滚动支持,您将只能在使用Screen时滚动。你可能想要像这样开始xterm,总是使用Screen:

xterm -e screen

其他回答

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

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

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

我相信你可以在~/.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

对于OS X (Snow Leopard),以下操作对我来说是有效的:

http://slaptijack.com/system-administration/mac-os-x-terminal-and-gnu-screen-scrollback/

简单地说,它包括向~/添加以下内容。远程主机上的Screenrc(你正在运行的屏幕):

defscrollback 5000
termcapinfo xterm* ti@:te@

Jon Z提到的那篇优秀的文章已经不再可用,但我能够从谷歌缓存中找到它的纯文本版本。我把它保存在这里,以防将来谷歌也把它掉了。原来的帖子是由Mikael Ståldal所以功劳是应得的。

--

如何在GNU屏幕中使用鼠标滚轮

GNU Screen支持滚动,但是默认情况下你必须使用笨拙的键来使用它。我希望能够使用Shift-PageUp, Shift-PageDown和鼠标滚轮来滚动,就像你可以在xterm中做的那样。

为此配置Screen并不容易,而且涉及到与终端模拟器的合作。但我最终还是找到了一个很好的解决方案。将此添加到~/。Xresources文件(你需要注销才能生效):

XTerm*saveLines: 0
XTerm*vt100.translations: #override \n\
  Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  Lock Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  Lock @Num_Lock Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  @Num_Lock Ctrl <Btn4Down>: string(0x1b) string("[25S") \n\
  <Btn4Down>: string(0x1b) string("[5S") \n\
  Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  Lock Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  Lock @Num_Lock Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  @Num_Lock Ctrl <Btn5Down>: string(0x1b) string("[25T") \n\
  <Btn5Down>: string(0x1b) string("[5T") \n\
  Shift <KeyPress> Prior: string(0x1b) string("[25S") \n\
  Shift <KeyPress> Next: string(0x1b) string("[25T") \n

然后将其添加到~/。screenrc文件:

defscrollback 1000

# Scroll up
bindkey -d "^[[5S" eval copy "stuff 5\025"
bindkey -m "^[[5S" stuff 5\025

# Scroll down
bindkey -d "^[[5T" eval copy "stuff 5\004"
bindkey -m "^[[5T" stuff 5\004

# Scroll up more
bindkey -d "^[[25S" eval copy "stuff \025"
bindkey -m "^[[25S" stuff \025

# Scroll down more
bindkey -d "^[[25T" eval copy "stuff \004"
bindkey -m "^[[25T" stuff \004

这在xterm中是有效的。我不确定它是否适用于其他终端模拟器。

注意,这将禁用xterm中的正常滚动支持,您将只能在使用Screen时滚动。你可能想要像这样开始xterm,总是使用Screen:

xterm -e screen

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

terminfo xterm* ti=:te=