fori (119B)
1 # -*- mode: snippet -*- 2 # name: for i := 0; i < n; i++ { ... } 3 # -- 4 for ${1:i} := ${2:0}; $1 < ${3:10}; $1++ { 5 `%`$0 6 }