Formosa1 / zen-coding

Automatically exported from code.google.com/p/zen-coding
0 stars 0 forks source link

Problem with $ when chained with + #106

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. tr>th+th#group$*2

What is the expected output?
{{{
<tr>
    <th></th>
    <td id="group1"></td>
    <td id="group2"></td>
</tr>
}}}
What do you see instead?
{{{
<tr>
    <th></th>
    <td id="group2"></td>
    <td id="group3"></td>
</tr>
}}}
The id's don't increment from 1 if a subsequent term.

What version of the product are you using? On what operating system?
ZC v6.0.1 within Aptana Studio, build: 2.0.3.1265134283 on Win Vista.

Please provide any additional information below.
This is appears this will happen for any term that follows the + symbol
e.g. tr>th+td#c$ or p.topic+p.sub$*3 would also count from 2. It does not
require a * to do this and it happens for both class & id.

Original issue reported on code.google.com by webs%fla...@gtempaccount.com on 19 Feb 2010 at 5:13

GoogleCodeExporter commented 9 years ago
Should be fixed in developer preview: 
http://wiki.github.com/sergeche/zen-coding/release-notes

Original comment by serge....@gmail.com on 3 May 2010 at 3:15