Ultisnips eelixir and HTML tweaks

This commit is contained in:
Louis Pilfold 2015-03-16 22:50:34 +00:00
parent 4496631cf1
commit 7746cec77c
2 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,15 @@
priority -50 priority -50
extends html extends html
snippet % "<% %>" w
<% ${0} %>
endsnippet
snippet = "<%= %>" w
<%= ${1} %>
endsnippet
snippet end "<% end %>" w
<% end %>
endsnippet

View File

@ -198,6 +198,18 @@ snippet h1 "XHTML <h1>" w
<h1>$0</h1> <h1>$0</h1>
endsnippet endsnippet
snippet h2 "XHTML <h2>" w
<h2>$0</h2>
endsnippet
snippet h3 "XHTML <h3>" w
<h3>$0</h3>
endsnippet
snippet h4 "XHTML <h4>" w
<h4>$0</h4>
endsnippet
snippet head "XHTML <head>" snippet head "XHTML <head>"
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">