Add java snippets

This commit is contained in:
Austen Adler 2016-10-01 15:49:28 -04:00
parent 3f96e527af
commit 6f29328432
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1

View File

@ -209,7 +209,9 @@ snippet warn
snippet enfor
for (${1} : ${2}) ${0}
snippet for
for (${1}; ${2}; ${3}) ${0}
for (int ${1:i} = 0; $1 < ${2:count}; $1++) {
${3}
}
snippet wh
while (${1}) ${0}
##