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