neosnippet.vim/autoload/neocomplcache/sources/snippets_complete/javascript.snip

46 lines
737 B
Plaintext
Raw Normal View History

2012-02-02 04:33:35 +00:00
snippet :f
${1:method_name}: function(${2:attribute}){
${0}
}
snippet func
alias function
function ${1:function_name}(${2:argument}) {
${0:// body...}
}
snippet proto
${1:class_name}.prototype.${2:method_name} = function(${3:first_argument}) {
${0:// body...}
};
snippet f
2012-09-23 05:16:41 +00:00
function(${1}) {${0:$TM_SELECTED_TEXT}};
2012-02-02 04:33:35 +00:00
snippet if
2012-09-23 05:16:41 +00:00
if (${1:true}) {${0:$TM_SELECTED_TEXT}};
2012-02-02 04:33:35 +00:00
snippet ife
2012-09-23 05:16:41 +00:00
if (${1:true}) {${0:$TM_SELECTED_TEXT}} else{};
2012-02-02 04:33:35 +00:00
snippet for
for (var ${2:i}=0; $2 < ${1:Things}.length; $2++) {
${0}
};
snippet forin
for (var ${2:i} in ${1:Things}) {
${0}
};
snippet ;,
2012-09-23 05:16:41 +00:00
${1:value_name}:${0:value},
2012-02-02 04:33:35 +00:00
snippet key
2012-09-23 05:16:41 +00:00
${1:key}: "${2:value}"}${3:, }
2012-02-02 04:33:35 +00:00
snippet timeout
2012-09-23 05:16:41 +00:00
setTimeout(function() {${0}}${2:}, ${1:10});