ZSH提示/R提示冲突

发布于 2024-08-10 22:36:13 字数 569 浏览 5 评论 0原文

我目前将 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 技术交流群。

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

发布评论

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

评论(1

伤感在游骋 2024-08-17 22:36:13

你的 RPROMPT 在 Ubuntu 上对我来说很混乱。由于 zsh 知道 ANSI 颜色序列并拥有自己的工具(它也会自动处理零宽度校正),请尝试以下操作:

RPROMPT='[%F{green}%T%f]'

并且,顺便说一句:

PROMPT='[%F{green}%n@%m:%~%f]>'

Your RPROMPT messes up for me on Ubuntu. Since zsh knows ANSI color sequences and has its own facility for that (which automatically takes care of zero-width correction, too), try this:

RPROMPT='[%F{green}%T%f]'

And, by the way:

PROMPT='[%F{green}%n@%m:%~%f]>'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文