Merge commit '5aaacb96c0a93d4f7a48c2fb7c80a65840810876'

This commit is contained in:
2016-02-18 14:38:05 +00:00
parent 7091221e3c
commit 6b81efb6f9
4 changed files with 307 additions and 33 deletions

View File

@@ -114,7 +114,7 @@ else if (${1:condition}) {
endsnippet
snippet for "For loop, index or range"
for (${1:auto} ${2:index} ${3/(.*;.*)|(\w*)/(?1:=:\:)/} ${3:0; $2 < ${5:count}; $2${6:++}}) {
for (${1:int} ${2:index} = ${3:0}; $2 ${4:<} ${5:count}; $2${6:++}) {
$0
}
endsnippet