EmacsW32 Cygwin shell 问题

发布于 2024-11-07 07:48:12 字数 232 浏览 0 评论 0原文

我集成了 EmacsW32 和 Cygwin shell

当在 EmacsW32 中运行 cygwin-shell 时,

^[]0;~^G
^[[32mtroydm@ds-dev-025 ^[33m~^[[0m

,我看到这个提示而不是正常的提示。

如果我从桌面图标运行 cygwin shell 它工作正常,

我该如何解决这个问题?

I have EmacsW32 and Cygwin shell integrated

when running cygwin-shell in EmacsW32 at prompt i see this

^[]0;~^G
^[[32mtroydm@ds-dev-025 ^[33m~^[[0m

instead of normal prompt.

if i run cygwin shell from desktop icon it's working correctly

how can i fix this problem?

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

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

发布评论

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

评论(1

七色彩虹 2024-11-14 07:48:12

这些是 ansi 颜色控制序列。如果您使用 shell 模式,那么您可以让 emacs 使用 ansi-color 支持来解释这些序列。将类似的内容添加到您的 .emacs 文件中:

(require 'ansi-color)
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)

those are ansi color control sequences. if you are using shell-mode, then you can get emacs to interpret those sequences using the ansi-color support. add something like this to your .emacs file:

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