mirror of
https://github.com/kennethreitz-archive/kJS.tmbundle.git
synced 2026-06-21 16:10:58 +00:00
c89827b256
Unified the for snippets some more New for snippet for fast DOM iteration
19 lines
555 B
Plaintext
19 lines
555 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>content</key>
|
|
<string>for (var ${20:i} = ${1:Things}.length - 1; ${20:i} >= 0; ${20:i}--){
|
|
${0:$1[$20]}
|
|
}</string>
|
|
<key>name</key>
|
|
<string>for (…) {…} (Improved Native For-Loop)</string>
|
|
<key>scope</key>
|
|
<string>source.js</string>
|
|
<key>tabTrigger</key>
|
|
<string>for</string>
|
|
<key>uuid</key>
|
|
<string>C207B7C3-5597-4873-8AAD-C46FB8842AF2</string>
|
|
</dict>
|
|
</plist>
|