在 Textmate 中输入颜色控制字符
我可以使用 VIM 通过“Ctrl-V,Esc”输入这些颜色控制字符,然后它会显示 ^[ 作为颜色控制字符序列的特殊前导字符。
我怎样才能在 Textmate 中做到这一点?
谢谢
I can use VIM to input these color control chars by "Ctrl-V, Esc" then it will show me ^[ as a special leading char for color control chars sequence.
How could I do this in Textmate?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从字符查看器中选择这些字符(菜单编辑 -> 特殊字符,然后搜索“转义”),但我认为您最好使用该字符的转义形式,例如
\033 或 PHP 中的
\x1b
。当然,这取决于您正在编辑的文档类型。You can select those from the character viewer (Menu Edit -> Special Characters, then search for 'escape'), but I think you'd be better off using an escaped form of that character, e.g.
\033
in Bash or\x1b
in PHP. That, of course, would depend on what kind of document you're editing.