在屏幕中的窗口之间移动
我在 .screenrc 中有以下内容,
# I want to use Vim's navigation keys
bind h focus down
bind t focus up
我希望能够通过 Ctrl-A t 移动到下一个窗口,同时通过 Ctrl-A h 移动到上一个窗口。
然而,上面的映射对我来说不再起作用了。
如何在屏幕中的窗口之间移动?
I have the following in .screenrc
# I want to use Vim's navigation keys
bind h focus down
bind t focus up
I would like to be able to move by Ctrl-A t
to a next window, while by `Ctrl-A h to the previous window.
However, the above mappings do not work anymore for me.
How can you move between windows in Screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您启动 screen 然后输入 Ctrl-A ?,您将看到帮助页面,其中列出了下一个 [n] 和上一个 [p]。 我相信绑定到下一个和上一个而不是焦点将达到你想要的效果。
If you start screen then type Ctrl-A ?, you'll see the help page, which lists next [n] and prev [p]. I believe that binding to next and prev instead of focus will do what you want.