Changed order of placeholders for a for loop

This commit is contained in:
madmaurice 2015-09-09 00:46:30 +02:00
parent 28118489b5
commit 7b2b7f1cdc

View file

@ -10,7 +10,7 @@ snippet elif
elif [[ ${1:condition} ]]; then
${2:#statements}
snippet for
for (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do
for (( ${1:i} = 0; $1 < ${2:count}; $1++ )); do
${3:#statements}
done
snippet wh