GNU Screen:zsh 中奇怪的键盘动作
如果我在 zsh
控制台的非屏幕环境中输入 End
- 它会将我移动到行尾。 但是,如果我在屏幕后面的 zsh
中执行相同的操作,那么它后面的单词只会大写。
如何使这些动作在 screen
环境中也表现相同?
If I type End
in non-screen environment of my zsh
console - it will move me to the end of line.
But if I do the same in zsh
behind screen then it will just upper case following word..
How can I make those movements behave the same in screen
environment too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
~/.screenrc
文件中添加以下行之一:具体取决于按 Ctrl-v End 时得到的内容 在 shell 提示符下。转义由
^[
表示。或者,您可以尝试将
screen
中的TERM
设置为与screen
外相同的内容。In your
~/.screenrc
file add one of the following lines:depending on what you get when you press Ctrl-v End at a shell prompt. Escape is represented by
^[
.Alternatively, you can try setting
TERM
while you're inscreen
to the same thing it is outsidescreen
.