ZSH提示/R提示冲突
我目前将 ZSH PROMPT 变量设置为:PROMPT=$'[%{\e[0;32m%}%n@%m:%~%{\e[0m%}]>
和我的 RPROMPT 变量为:RPROMPT=$'[%{\e[0;32m%}%T\e[0m%}]'
我正在努力的效果是使括号和“>”白色(使用终端文本颜色设置)和绿色内的所有内容。然而,当在 OS X 中启用 RPrompt 时(Ubuntu 工作正常),文本输入从 3 个字符开始进入 LPrompt,并覆盖最后 3 个字符!
屏幕截图 http://img41.imageshack.us/img41/4575/ Screenshot20091112at722.png
为我的 ZSH Prompt 和 RPrompt 着色以避免此问题的正确方法是什么?
I currently have my ZSH PROMPT variable set up as:PROMPT=$'[%{\e[0;32m%}%n@%m:%~%{\e[0m%}]>
and my RPROMPT variable as:RPROMPT=$'[%{\e[0;32m%}%T\e[0m%}]'
The effect I'm working for is to make the brackets and ">" white (using Terminal text-color settings) and everything inside of those green. However, when RPrompt is enabled in OS X (Ubuntu works fine), text entry begins 3 characters INTO the LPrompt, and overwrites the last 3 characters!!
Screenshot http://img41.imageshack.us/img41/4575/screenshot20091112at722.png
What is the proper way to color my ZSH Prompt and RPrompt to avoid this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的
RPROMPT
在 Ubuntu 上对我来说很混乱。由于zsh
知道 ANSI 颜色序列并拥有自己的工具(它也会自动处理零宽度校正),请尝试以下操作:并且,顺便说一句:
Your
RPROMPT
messes up for me on Ubuntu. Sincezsh
knows ANSI color sequences and has its own facility for that (which automatically takes care of zero-width correction, too), try this:And, by the way: