/javascript-mode/commons.for.2
http://github.com/ridgetang/snippets · Unknown · 9 lines · 9 code · 0 blank · 0 comment · 0 complexity · c2563fba3af1684d23aa43391343eac5 MD5 · raw file
- # name : for i--
- # key : for.2
- # group : commons
- # contributor : crazycode@gmail.com
- # This was cloned from a TextMate bundle for yasnippet.
- # --
- for (var ${1:i} = ${2:Things}.length - 1; $1 >= 0; $1--){
- $0
- };