mattn / emmet-vim

emmet for vim: http://emmet.io/
http://mattn.github.io/emmet-vim
MIT License
6.43k stars 411 forks source link

Are button abbreviations included? #445

Open tserafim opened 5 years ago

tserafim commented 5 years ago

Emmet Cheat Sheet shows some button expansions:

button:submit, button:s, btn:s
<button type="submit"></button>

button:reset, button:r, btn:r
<button type="reset"></button>

button:disabled, button:d, btn:d
<button disabled="disabled"></button>

But none of this work for me, as I get the following results:

  <button:submmit></button:submmit>
  <button:s></button:s>
  <btn:s></btn:s>

  <button:reset></button:reset>
  <button:r></button:r>
  <btn:r></btn:r>

  <button:disabled></button:disabled>
  <button:d></button:d>
  <btn:d></btn:d>

Are all examples in the cheat sheet suposed to work? If so, does anyone have any idea about what is going on?

mattn commented 5 years ago

Yes, previously it was not registered on the cheet sheet. Could you please send me PR?