Changed order of placeholders for a for loop
This commit is contained in:
parent
28118489b5
commit
7b2b7f1cdc
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue