Change div snippet, add nav snippet for html

This commit is contained in:
Kenneth Benzie 2017-01-08 11:01:29 +00:00
parent 5f5ecde607
commit b27cee4756

View File

@ -10,6 +10,18 @@ def complete(t, opts):
endglobal
# html snippets
snippet div "HTML div tag"
<div$1>
$0
</div>
endsnippet
snippet nav "HTML nav tag"
<nav$1>
$0
</nav>
endsnippet
snippet class "HTML class tag"
class="$1"$0
endsnippet