在 Textmate 中为字符串着色?
是否可以在 Textmate 中以自定义颜色显示某个字符串?
假设我想始终以黄色显示字符串“myCoolFunction()”,这样我就可以更好地看到文档中使用该函数的位置。
is it possible to display a certain string in Textmate in a custom color?
Lets say I want to display the string "myCoolFunction()" always in yellow so I can see better where I use the function in my documents.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实上这是可能的。我修改了语言包。我正在使用 JavaScript,因此我在 TextMate 中编辑了 JavaScript 语言包。您必须使用简单的正则表达式创建一个新的范围选择器。之后,您可以在设置中创建新的颜色规则,然后就可以了。
Actually it was possible. I modified the language pack. I am working with JavaScript so I edited the JavaScript language pack in TextMate. You have to create a new scope selector with a simple regex. After that you can create a new color rule in the settings and there you have it.
不,没有任何特定函数的语法选择器。
No, there aren't any syntax selectors for specific functions.