update version number

This commit is contained in:
Ray Elliott 2021-12-12 19:02:16 +00:00
parent 7c4dc26c9d
commit 2df15c3410
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,3 @@
snippet tp "{% partial ... " i
{% partial '$1'$0 %}
endsnippet

View File

@ -2,6 +2,12 @@ snippet todo "// TODO"
// TODO $0
endsnippet
snippet fn "function .."
function $1($2) {
$0
}
endsnippet
snippet if "if ( ... ) { ... }"
if ($1) {
$0