Commit Graph

4 Commits

Author SHA1 Message Date
Mike Wadsten
2a5684bac4 Fix numbering on nested multiplication
If an element is being multiplied, its number should reflect the repeating of that element, not the group it belongs in.

----
Example case:

Input: .outer$*3>.inner$*2

Expected output:
<div class="outer1">
  <!-- two DIVs: .inner1, .inner2 -->
</div>
<div class="outer2">
  <!-- two DIVs: .inner1, .inner2 -->
</div>
<div class="outer3">
  <!-- two DIVs: .inner1, .inner2 -->
</div>

Observed output:
<div class="outer1">
  <!-- two DIVs: .inner1, .inner2 -->
</div>
<div class="outer2">
  <!-- two DIVs: .inner2, .inner2 -->
</div>
<div class="outer3">
  <!-- two DIVs: .inner3, .inner3 -->
</div>
2013-08-12 22:28:29 +09:00
mattn
9791571ff4 Remove default html indentation 2013-08-09 13:06:48 +09:00
mattn
455f6f5760 Fixes #131 #134 2013-08-08 00:47:56 +09:00
mattn
43d5656dca Rename to Emmet.vim! 2013-08-06 19:49:59 +09:00