<br><br><div class="gmail_quote">On Thu, Sep 23, 2010 at 8:00 AM,  <span dir="ltr"><<a href="mailto:textmate-request@lists.macromates.com">textmate-request@lists.macromates.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div id=":1sc">On Wed, Sep 22, 2010 at 20:55, minimal design<br>
<<a href="mailto:textmate@minimaldesign.net">textmate@minimaldesign.net</a>> wrote:<br>
> I've looked through the docs but can't figure it out...<br>
> I'm trying to add CSS3 stuff to the default CSS bundle, but I don't want to<br>
> touch the original bundle off course so in my own bundle I try something<br>
> like:<br>
><br>
> { scopeName = 'source.css.mcss'; fileTypes = ( 'css', 'css.erb', 'less');<br>
> foldingStartMarker = '/\*\*(?!\*)|\{\s*($|/\*(?!.*?\*/.*\S))';<br>
> foldingStopMarker = '(?<!\*)\*\*/|^\s*\}'; patterns = ( { name =<br>
> 'meta.selector.css'; begin = '^(?=\s*[:.*#a-zA-Z])'; end = '(?=\{)';<br>
> patterns = ( { name = 'entity.name.tag.css'; match =<br>
> '\b(article|aside|audio|canvas|command|datalist|details|embed|figcaption|figure|footer|header|hgroup|keygen<br>
> |mark|menu|meter|nav|output|progress|rp|rt|ruby|section|summary|time|video|wbr)\b';<br>
> }, ); }, { include = "source.css"; } ); }<br>
> and I get all the new elements highlighted like they're supposed to, but<br>
> that "cancels out" the standard CSS elements. I thought adding the<br>
> "source.css" would take care of that but obviously it doesn't... Do I have<br>
> to include the standard elements back into the regex? Is there a better way?<br>
> Thanks for any pointer in the right direction!<br>
<br>
Not sure if it'll work but you could try adding your pattern after including<br>
`source.css`, i.e.<br>
    patterns = ( { include = "source.css"; }, ? );<br>
<br>
HTH,<br>
Martin</div></blockquote></div><br><div>It seems that whatever I put last, it cancels the other one out... From the DOc, I though that it would inherit if you use the name convention... But the inheritance doesn't happen within patterns that have the same name? Is that what the deal is? Or I"m doing it wrong? It seems counterproductive not to be able to ad on to a rule, so I tend to think I'm doing it wrong, but I've tried all the option I could think about... Anyone has done this before? If I have to just have to duplicate and modify the whole default CSS language, that's fine, but I want to make sure there's no better way first... Thanks!!</div>