vim-snippets/UltiSnips/eelixir.snippets

16 lines
166 B
Plaintext
Raw Normal View History

2015-03-04 09:35:32 -05:00
priority -50
extends html
2015-03-16 18:50:34 -04:00
snippet % "<% %>" w
<% ${0} %>
endsnippet
snippet = "<%= %>" w
<%= ${1} %>
endsnippet
snippet end "<% end %>" w
<% end %>
endsnippet