Textmate语法突出显示,扩展来自另一种语言的突出显示

时间:2010-06-29 16:25:22

标签: css syntax-highlighting textmate highlighting

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

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

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

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

1 个答案:

答案 0 :(得分:4)

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

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

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

要向此示例添加更多信息,这是我正在创建的 I 包的语言语法(在我感兴趣的文件部分中,所有内容都在meta.rails范围内。也许你的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'; },
            {   include = '$self'; },
        );
    },
    {   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模式(我认为,这很重要)。