You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
265 B
Plaintext
16 lines
265 B
Plaintext
11 years ago
|
snippet f "function"
|
||
|
function ${1:function_name} (${2:argument}) {
|
||
|
${VISUAL}$0
|
||
|
}
|
||
|
endsnippet
|
||
|
|
||
|
snippet scf "self calling function"
|
||
|
(function (${1:argument}) {
|
||
|
${VISUAL}$0
|
||
|
}(${2:$1}));
|
||
|
endsnippet
|
||
|
|
||
|
snippet log "console.log"
|
||
|
console.log(${1:"${2:value}"});
|
||
|
endsnippet
|