mattn
57a2ca0e2f
Add test for sass indentation bug
2013-08-13 20:21:37 +09:00
mattn
888fdb6699
Fixes sass indentation
2013-08-13 20:16:23 +09:00
mattn
9be8926559
Fixes wrong tests for sass
2013-08-13 18:59:31 +09:00
mattn
8f088c9f73
Add emmet#getFilter()
2013-08-13 18:59:13 +09:00
mattn
c257e09d69
Fixes extends of filter. sass filter doesn't extend css's one
2013-08-13 18:44:42 +09:00
mattn
f18cb41f93
Merge branch 'master' of github.com:mattn/emmet-vim
2013-08-12 22:39:15 +09:00
mattn
40c4b1e0b8
Fixes test
2013-08-12 22:38:45 +09:00
mattn
f1cbe2545f
identity can treat URL
2013-08-12 22:38:05 +09:00
mattn
018cab0adc
Merge pull request #139 from mikewadsten/master
...
Fix numbering on nested multiplication
2013-08-12 06:28:53 -07:00
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
cb869edec4
Add test for #140
2013-08-12 22:27:13 +09:00
mattn
222c509447
Fixes #140
2013-08-12 22:18:11 +09:00
Mike Wadsten
cca5dedd69
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-09 22:45:42 -05:00
mattn
9791571ff4
Remove default html indentation
2013-08-09 13:06:48 +09:00
DeaR
b9bd4738dc
Fix duplicate key.
2013-08-08 18:04:25 +09:00
mattn
6d924eb310
Remove div element for snippets
2013-08-08 12:31:51 +09:00
mattn
e1fecdc77b
version bump up
2013-08-08 12:31:46 +09:00
mattn
db7c3bebc8
Merge pull request #135 from joedicastro/master
...
Fixes #133
2013-08-07 18:32:10 -07:00
joe di castro
7fb711c257
Fixes #133
2013-08-07 18:57:19 +02:00
mattn
455f6f5760
Fixes #131 #134
2013-08-08 00:47:56 +09:00
mattn
fd7c37d618
rename
2013-08-06 20:00:30 +09:00
mattn
43d5656dca
Rename to Emmet.vim!
2013-08-06 19:49:59 +09:00
mattn
5d54856b49
Keep 0, no adding px unit when expanding b0
2013-06-28 09:55:15 +09:00
mattn
0b37e09e5e
Fix typo
2013-06-17 16:32:05 +09:00
mattn
53e8b80dfd
Fixes links to blogs. Closes #125
2013-06-14 15:12:53 +09:00
mattn
32bb75081c
Add doc for lorem+ipsum
2013-06-10 21:18:18 +09:00
mattn
a98478d7dc
Add test for #124
2013-06-10 21:08:14 +09:00
mattn
e7460ef2ec
Should be all ${cursor} in the tokens for m0+bgi+p0. The value is not decided with token, value should be empty.
2013-06-10 21:01:53 +09:00
mattn
daaa9450a6
bg++bg+
2013-06-10 20:42:00 +09:00
mattn
4221cd94ed
Version guard
2013-06-10 20:24:29 +09:00
mattn
8cc33aedf4
Add tests for sass
2013-06-10 19:37:17 +09:00
mattn
32c9eaf0c6
Don't use workaround. remove last ; correctly. Fixes #124
2013-06-10 19:36:17 +09:00
mattn
917a9d4bb3
Should be non-space in default
2013-06-10 19:35:27 +09:00
mattn
ae7d014738
Add last comma
2013-06-10 19:34:36 +09:00
mattn
6619d5078e
lorem for japanese
2013-06-06 18:24:15 +09:00
mattn
8e515a11c2
Add custom_expand
2013-06-06 17:32:10 +09:00
mattn
30d304ff1f
Add user-defined dollar expression (Merged tang3w's awesome commits)
2013-06-06 12:17:42 +09:00
mattn
ca95069268
Fix typo
2013-06-03 22:29:26 +09:00
mattn
857ecdb813
Fix typo
2013-06-03 22:27:41 +09:00
mattn
aabea8343f
Oops
2013-06-03 12:13:25 +09:00
mattn
64b64e6bf8
Lorem Ipsum
2013-06-03 12:06:12 +09:00
mattn
dd16ce3b0b
Merge pull request #123 from shlomif/master
...
Grammar corrections.
2013-05-15 17:00:13 -07:00
Shlomi Fish
1d6a0917dc
Correct grammar in the tutorial.
2013-05-15 19:03:50 +03:00
mattn
6dfd49a31f
Merge pull request #122 from shlomif/master
...
Remove trailing space + Grammar Corrections.
2013-05-15 06:30:54 -07:00
Shlomi Fish
f128d1013b
[README] Correct some grammar problems.
2013-05-15 16:25:19 +03:00
Shlomi Fish
3b8f3ac778
Remove trailing space.
2013-05-15 16:18:25 +03:00
mattn
b162859ca8
Fix indentation
2013-05-08 10:17:22 +09:00
mattn
62c6622153
Fix attributes missing
2013-05-08 10:17:12 +09:00
mattn
4757aae967
Use meta charset. This may occur some problem. For example charset=Windows-31J won't work correctly.
2013-05-08 09:28:33 +09:00
mattn
6a68c46d88
Fix lost attributes. Close #121
2013-05-08 09:27:37 +09:00