<div dir="ltr">Okay, pretty sure it was working but perhaps each time I was editing and tested my .tm_properties it picked up the last one in the list as the new one and so I thought it was working when it probably wasn't.<div><br></div><div>FWIW:</div><div><br></div><div><pre bgcolor="#F7F7F7" style="border-radius:5px;margin-left:15px;margin-right:15px;max-width:90vw;overflow-x:auto;padding:5px;background-color:rgb(247,247,247)"><code bgcolor="#F7F7F7" style="border-radius:3px;margin:0px;padding:0px">[ templates/** ]
fileType = 'text.html.mustache'</code></pre>Only picks up for new files in subfolders. <span style="line-height:1.5">I have to do:</span></div><div><br></div><div><pre bgcolor="#F7F7F7" style="border-radius:5px;margin-left:15px;margin-right:15px;max-width:90vw;overflow-x:auto;padding:5px;background-color:rgb(247,247,247)"><code bgcolor="#F7F7F7" style="border-radius:3px;margin:0px;padding:0px">[ "templates{/**,}" ]
fileType = 'text.html.mustache'</code></pre>To make it work as desired. But yes, having the :attr.untitled syntax would be perfect for what I'm trying to achieve.<br class="inbox-inbox-Apple-interchange-newline"><div><br></div></div><div><div class="gmail_quote"><div dir="ltr">On Wed, 13 Jul 2016 at 12:45 Allan Odgaard <<a href="mailto:mailinglist@textmate.org">mailinglist@textmate.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><u></u>




<div>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">On 13 Jul 2016, at 9:47, George McGinley Smith wrote:</p>

<p dir="auto"></p></div>
<div style="white-space:pre-wrap"><blockquote style="border-left:2px solid #777;color:#777;margin:0 0 5px;padding-left:5px"><div dir="auto">[…] I have the following:
</div></blockquote></div></div></div><div><div style="font-family:sans-serif"><div style="white-space:pre-wrap"><blockquote style="border-left:2px solid #777;color:#777;margin:0 0 5px;padding-left:5px"><div dir="auto">
</div><div dir="auto">[ "templates/{**/,}*" attr.untitled ]
</div><div dir="auto">fileType             = 'text.html.mustache'
</div></blockquote></div></div></div><div><div style="font-family:sans-serif"><div style="white-space:pre-wrap"><blockquote style="border-left:2px solid #777;color:#777;margin:0 0 5px;padding-left:5px"></blockquote></div>
<div style="white-space:normal">

<p dir="auto">This syntax should never have worked.</p>

<p dir="auto">You need to either put a <code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0 0.4em" bgcolor="#F7F7F7">.tm_properties</code> in each subfolder (templates, js, scss, and css) which has:</p>

<pre style="background-color:#f7f7f7;border-radius:5px 5px 5px 5px;margin-left:15px;margin-right:15px;max-width:90vw;overflow-x:auto;padding:5px" bgcolor="#F7F7F7"><code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0" bgcolor="#F7F7F7">[ attr.untitled ]
fileType = «file type»
</code></pre>

<p dir="auto">Or if you don’t mind targeting <em>all</em> files in each subfolder, you can leave out the <code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0 0.4em" bgcolor="#F7F7F7">attr.untitled</code>, e.g.:</p>

<pre style="background-color:#f7f7f7;border-radius:5px 5px 5px 5px;margin-left:15px;margin-right:15px;max-width:90vw;overflow-x:auto;padding:5px" bgcolor="#F7F7F7"><code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0" bgcolor="#F7F7F7">[ templates/** ]
fileType = 'text.html.mustache'
</code></pre>

<p dir="auto">That said, it does seem like it would be nice to target both a file pattern and a scope selector, could possibly be done with <code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0 0.4em" bgcolor="#F7F7F7">:</code> as separator, e.g.:</p>

<pre style="background-color:#f7f7f7;border-radius:5px 5px 5px 5px;margin-left:15px;margin-right:15px;max-width:90vw;overflow-x:auto;padding:5px" bgcolor="#F7F7F7"><code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0" bgcolor="#F7F7F7">[ templates/**:attr.untitled ]
fileType = 'text.html.mustache'
</code></pre>

<p dir="auto">I will consider such extension for a future update.</p>

<p dir="auto">P.S. The <code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0 0.4em" bgcolor="#F7F7F7">{**,}/*</code> syntax is redundant and <code style="background-color:#f7f7f7;border-radius:3px;margin:0;padding:0 0.4em" bgcolor="#F7F7F7">**</code> should match the same (though this might not have been the case in earlier versions of TextMate’s file pattern matcher).</p>
</div>
</div>
</div>

<br>
_______________________________________________<br>
textmate mailing list<br>
<a href="mailto:textmate@lists.macromates.com" target="_blank">textmate@lists.macromates.com</a><br>
<a href="http://lists.macromates.com/listinfo/textmate" rel="noreferrer" target="_blank">http://lists.macromates.com/listinfo/textmate</a></blockquote></div></div></div>