tomoyuki kashiro
3e668b3523
add link:import for webcomponents #234
2014-11-03 17:43:09 +09:00
mattn
070800e31d
Support 's' filter. Close #231
2014-09-02 18:33:26 +09:00
mattn
55c704bc3a
fl should be expanded float:left; in css. close #225
2014-08-08 18:49:35 +09:00
Conrad Decker
437cd92004
Changed 'parenthesis' setting to 'attribute_style' setting to allow for choice between 'hash' and 'html'
...
Updated output to correctly display html-style attributes or hash-style attributes. 'attribute_style' setting defaults to hash but can be updated by the user to use html style attributes
2014-07-17 09:40:35 -04:00
mattn
761adcc4be
Fix typo
2014-07-17 09:35:04 +09:00
mattn
ca6296fb7f
parenthesis for haml #216
2014-07-17 09:23:28 +09:00
abhishek
949b8c26b7
Added meta viewport tag
2014-06-28 15:36:26 +09:00
mattn
19961fc270
Fix #199
2014-03-28 22:13:51 +09:00
mattn
ed36e194e5
Wrap what you see when leader contains {$#}
2014-03-28 22:00:01 +09:00
Christopher Truett
e8169335a5
Edited line 103 of autoload/emmet.vim to fix intelligent expansion. It was trying to call a non-existant command.
2014-03-25 20:03:32 -04:00
mattn
56634e7f80
Fixes #195
2014-03-15 22:47:52 +09:00
mattn
d894c67aa9
remove \<right>
2014-03-11 21:41:17 +09:00
mattn
7268e203b8
upper case
2014-03-11 21:07:53 +09:00
mattn
cd23a38f2b
<!DOCTYPE> should be contains last \n
2014-03-11 21:07:07 +09:00
mattn
464291244a
Remove debug message
2014-03-11 17:17:29 +09:00
mattn
cd808a5fe5
New emmet feature: update tag
2014-03-11 16:39:35 +09:00
mattn
52545221f6
Save/restore cursor position for removing $cursor$. related issue #162
2014-03-10 11:13:39 +09:00
mattn
6cd20746ad
Fixes indentation bug. Closes #189
2014-02-12 20:25:03 +09:00
mattn
df3e61ba69
Fixes #178
2013-12-06 20:31:43 +09:00
mattn
934feeb55f
Add bem filter: http://docs.emmet.io/filters/bem/
2013-12-06 17:06:14 +09:00
mattn
2ecc25f727
Fixes #173
2013-11-28 09:39:26 +09:00
mattn
47f27f8c3d
Fixies #172
2013-11-26 16:22:37 +09:00
mattn
e990cebbae
Workaround
2013-11-26 12:49:45 +09:00
mattn
d6ab310cc9
Fixes rendering type
2013-11-26 09:58:41 +09:00
Bill Hau
59239b05bb
Changed emmet#getFileType() to do basetype checking on &ft parts instead of empty type var
2013-11-15 20:15:41 +09:00
mattn
3c5eb601fb
Add !!!
2013-10-29 22:41:33 +09:00
mattn
ac79b721c5
Add 'c' for comment
2013-10-29 22:09:06 +09:00
mattn
ea1b779868
s/ExpandWord/expandWord/g
...
s/CompleteTag/completeTag/g
Ready for next/prev item
2013-10-22 12:00:04 +09:00
mattn
6baf3c1210
Expand | just for snippets
2013-10-15 10:21:24 +09:00
mattn
4c371b5fa6
Added emmet#expandAbbrIntelligent() to you to do:
...
imap <expr> <tab> emmet#expandAbbrIntelligent("\<tab>")
2013-10-15 09:26:25 +09:00
mattn
32a1dac905
Added emmet#isExapandable(). related issue #156
2013-10-15 09:13:07 +09:00
mattn
6a06f58a5e
Remove annoying type="text/css" from link:css and link:print snippet. Closes #152
2013-10-01 09:31:40 +09:00
mattn
bd4c1bfaef
Expand paren when type is css
2013-09-26 09:57:06 +09:00
mattn
5d90a2c83d
Restore cursor position on insert-mode
2013-09-09 21:19:38 +09:00
mattn
fcf0f567be
Use i_CTRL-R= instead of <esc>a
2013-08-25 23:53:36 +09:00
mattn
13994cc066
html5ish
2013-08-22 19:55:53 +09:00
mattn
afd55ad70c
Check foldclosed
2013-08-22 19:44:51 +09:00
mattn
056b49c2bd
Fixes basedirect/basevalue ex: ul>li.item$@-*5 Should be count down from 5 to 1.
2013-08-20 09:44:29 +09:00
mattn
b2561af319
Possible to specify base value. Related issue #144
2013-08-19 11:07:19 +09:00
mattn
286869545f
Shouldn't be a leading spaces
2013-08-13 20:42:25 +09:00
mattn
5dc6c1a001
Include feature of #129
2013-08-13 20:42:01 +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
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