Monica3 / zen-coding

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

Incremental for ID not applying #377

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Insert this zen code div#tabs>ul>li*4>a[href="#tab-$$$"]^^div[id="tab-$$$"]*4
2.Press tab

What is the expected output? 
        <div id="tabs">
            <ul>
                <li>
                    <a href="#tab-001"></a>
                </li>
                <li>
                    <a href="#tab-002"></a>
                </li>
                <li>
                    <a href="#tab-003"></a>
                </li>
                <li>
                    <a href="#tab-004"></a>
                </li>
            </ul>
            <div id="tab-001"></div>
            <div id="tab-002"></div>
            <div id="tab-003"></div>
            <div id="tab-004"></div>
        </div>
What do you see instead?
        <div id="tabs">
            <ul>
                <li>
                    <a href="#tab-001"></a>
                </li>
                <li>
                    <a href="#tab-002"></a>
                </li>
                <li>
                    <a href="#tab-003"></a>
                </li>
                <li>
                    <a href="#tab-004"></a>
                </li>
            </ul>
            <div id="tab-001"></div>
            <div id="tab-001"></div>
            <div id="tab-001"></div>
            <div id="tab-001"></div>
        </div>

What version of the product are you using?
Tha one that comes with WebEssentials, latest update

On what operating system?
Windows 7 Proffesional N 64-bit

Please provide any additional information below.

Original issue reported on code.google.com by kristen....@gmail.com on 19 Dec 2013 at 1:23

GoogleCodeExporter commented 8 years ago
div#tabs>ul>li*4>a[href="#tab-$$$"]^^div#tab-$$$*4 gives the same result

Original comment by kristen....@gmail.com on 19 Dec 2013 at 1:24