ANSI 转义字符在 Eclipse 控制台上的显示方式不正确
我有一个 Scala 项目,我使用 Scala-Eclipse-Plugin 和 sbt。到目前为止,一切都很好。但问题是 sbt 将一些 ANSI 转义序列写入输出(我对此可能是错的?)。当我从 shell 调用 sbt 时,它们看起来很好,但在 eclipse 中,它们看起来像这样:
[0m[[0minfo[0m] [34m[0m
出了什么问题?
I have a Scala project and I use Scala-Eclipse-Plugin along with sbt. So far so good. But the problem is that sbt writes some ANSI escape sequences to the output (I might be wrong about this?).They appear pretty well when I invoke sbt from shell but inside eclipse, they appear like this:
[0m[[0minfo[0m] [34m[0m
what's wrong ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅“尊重 ansi 颜色代码的 Eclipse 控制台视图的讨论”我按照@thegreendroid的建议并成功使用了ANSIConsole。
See the discussion for "an eclipse console view that respects ansi color codes" I followed the suggestion of @thegreendroid and used ANSIConsole successfully.
Eclipse 控制台不支持 ANSI 转义序列。
The Eclipse console does not support ANSI escape sequences.