Textmate - 更改文档块内的 @TODO 颜色

发布于 2024-12-11 17:00:11 字数 209 浏览 0 评论 0原文

我可以使用范围 comment.block.documentation 更改 textmate 内整个文档块的颜色

但是是否可以更改该 docblock 内特定单词的颜色?

我指的是改变单词的颜色,甚至改变整行的颜色,比如

@TODO 
@FIXME 
@CHANGED

谢谢。

I'm able to change an entire documentation block's color inside textmate by using the scope comment.block.documentation

However is it possible to change the color of specific words inside that docblock?

I'm refering to change the color of words or even the entire line like

@TODO 
@FIXME 
@CHANGED

thanks.

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

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

发布评论

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

评论(1

夏花。依旧 2024-12-18 17:00:11

好吧...我找到了答案。

捆绑>捆绑包编辑器>显示捆绑编辑器

选择 JavaScript 语言(注意...该语言在左侧列表的 Javascript 项内有一个 L 图标)

找到名为 comment.block.documentation.js 的范围,并

{   name = 'comment.block.documentation.js';
        begin = '(/\*\*)\s*

在只需更改后 进行相应修改使用声明的选择器在首选项窗口上设置颜色!

; end = '\*/'; beginCaptures = { 1 = { name = 'punctuation.definition.comment.js'; }; }; endCaptures = { 0 = { name = 'punctuation.definition.comment.js'; }; }; patterns = ( { name = 'meta.documentation.tag.todo.js'; begin = '((\@)TODO)'; end = '(?=^\s*\*?\s*@|\*/)'; }, { name = 'meta.documentation.tag.fixme.js'; begin = '((\@)FIXME)'; end = '(?=^\s*\*?\s*@|\*/)'; }, { name = 'meta.documentation.tag.changed.js'; begin = '((\@)CHANGED)'; end = '(?=^\s*\*?\s*@|\*/)'; }, ); },

在只需更改后 进行相应修改使用声明的选择器在首选项窗口上设置颜色!

Ok... i was able to find the answer.

Bundles > Bundle Editor > Show Bundle Editor

Select the Language Javascript (note... the language has a L icon inside the Javascript item on the left list)

find for the scope named comment.block.documentation.js and modify it accordingly

{   name = 'comment.block.documentation.js';
        begin = '(/\*\*)\s*

after you just have to change the color on the prefs window, using the declared selector!

; end = '\*/'; beginCaptures = { 1 = { name = 'punctuation.definition.comment.js'; }; }; endCaptures = { 0 = { name = 'punctuation.definition.comment.js'; }; }; patterns = ( { name = 'meta.documentation.tag.todo.js'; begin = '((\@)TODO)'; end = '(?=^\s*\*?\s*@|\*/)'; }, { name = 'meta.documentation.tag.fixme.js'; begin = '((\@)FIXME)'; end = '(?=^\s*\*?\s*@|\*/)'; }, { name = 'meta.documentation.tag.changed.js'; begin = '((\@)CHANGED)'; end = '(?=^\s*\*?\s*@|\*/)'; }, ); },

after you just have to change the color on the prefs window, using the declared selector!

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