css – Textmate语法高亮显示,扩展另一种语言的突出显示

前端之家收集整理的这篇文章主要介绍了css – Textmate语法高亮显示,扩展另一种语言的突出显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试在Textmate中扩展一些CSS突出显示.我的方法是这样的……

{ 
    ....
    patterns = (
        { include = 'source.css'; },{ 
            name = 'support.function';
            match = '\..*\);';
        },);
}

问题是“include =’source.css’;”.如果我删除该行.我的自定义匹配器命中并应用预期的突出显示.但后来我失去了我想要的所有预定义的CSS突出显示.

我很困惑如何覆盖我所包含的现有css突出显示.想法?

最佳答案
我有类似的问题.我猛烈地反对它,然后TextMate IRC频道中的某个人让我直截了当:由于某种原因(我忘了)你需要重新包括你的语言语法.

我的模式部分现在看起来像

patterns = (
{   include = 'source.ruby'; },{   include = '$self'; },);

为了向这个例子添加更多信息,这里是我正在创建的包的语言语法(在我感兴趣的文件部分,一切都在范围Meta.rails.model.也许你没有你的CSS包.

patterns = (
    {   name = 'Meta.rails.model';
        comment = "Uses lookahead to match classes that (may) inherit from ActiveRecord::Base; includes 'source.ruby' to avoid infinite recursion";
        begin = '(^\s*)(?=class\s+.+ActiveRecord::Base)';
        end = '^\1(?=end)\b';
        patterns = (
            {   include = 'source.ruby'; },);
    },{   name = 'source.ruby.rails.aasm.event';
        match = '(aasm_event\W*:\w+)';
        captures = { 1 = { name = 'keyword.other.context.ruby.rails.aasm.event'; }; };
    },{   include = 'source.ruby.rails'; },);

}

但是你看到$self声明将其他模式引入了Meta.rails.model模式(我认为,为什么这很重要).

原文链接:https://www.f2er.com/css/427036.html

猜你在找的CSS相关文章