在屏幕之间切换

发布于 2024-08-24 05:44:49 字数 69 浏览 2 评论 0原文

我最近才使用 GNU screen。我想知道是否有更简单的方法来切换屏幕。例如将其映射到 alt+左箭头和 alt+右箭头?

I'm using GNU screen just recently. I'm wondering if there is an easier way to switch between screen. for example to map it to alt+left arrow and alt+right arrow ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨离汐 2024-08-31 05:44:49

您可以使用bindkey函数绑定屏幕设置(.screenrc)中的键。例如:(

# Bind F11 and F12 (NOT F1 and F2) to previous and next screen window
bindkey -k F1 prev
bindkey -k F2 next

此示例可以在 http://www.pixelbeat.org/lkdb/ 找到screen.html)

You can bind keys in screen settings (.screenrc) using the bindkey function. For example:

# Bind F11 and F12 (NOT F1 and F2) to previous and next screen window
bindkey -k F1 prev
bindkey -k F2 next

(this example can be found at http://www.pixelbeat.org/lkdb/screen.html)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文