mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
10 lines
119 B
Plaintext
10 lines
119 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: for
|
|
# key: for
|
|
# --
|
|
var ${1:i} = ${2:-1}, len = $3.length;
|
|
|
|
for(; ++$1 < len;){
|
|
$4
|
|
}
|