First commit.
This commit is contained in:
8
snippets/js-mode/fori
Normal file
8
snippets/js-mode/fori
Normal file
@ -0,0 +1,8 @@
|
||||
# -*- mode: snippet -*-
|
||||
# name: for (var i = 0; i < arr.length; ++i) { ... }
|
||||
# key: fori
|
||||
# uuid: fori
|
||||
# --
|
||||
for (var ${1:i} = ${2:0}; $1 < ${3:${4:arr}.length}; ++$1) {
|
||||
`%`$0
|
||||
}
|
Reference in New Issue
Block a user