mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/vim-snippets/UltiSnips/javascript.snippets

76 lines
1.5 KiB
Plaintext
Raw Normal View History

priority -50
2012-08-16 23:41:25 -04:00
###########################################################################
# TextMate Snippets #
###########################################################################
snippet get "Get Elements"
getElement${1/(T)|.*/(?1:s)/}By${1:T}${1/(T)|(I)|.*/(?1:agName)(?2:d)/}('$2')
endsnippet
snippet '':f "object method string"
'${1:${2:#thing}:${3:click}}': function(element) {
${VISUAL}$0
2012-08-16 23:41:25 -04:00
}${10:,}
endsnippet
snippet :f "Object Method"
${1:method_name}: function(${3:attribute}) {
${VISUAL}$0
2012-08-16 23:41:25 -04:00
}${10:,}
endsnippet
snippet :, "Object Value JS"
${1:value_name}: ${0:value},
2012-08-16 23:41:25 -04:00
endsnippet
snippet : "Object key key: 'value'"
${1:key}: ${2:"${3:value}"}${4:, }
endsnippet
snippet proto "Prototype (proto)"
${1:class_name}.prototype.${2:method_name} = function(${3:first_argument}) {
${VISUAL}$0
};
2012-08-16 23:41:25 -04:00
endsnippet
2016-10-02 07:37:21 -04:00
snippet fun "function (fun)" w
function ${1:function_name}(${2:argument}) {
${VISUAL}$0
2012-08-16 23:41:25 -04:00
}
endsnippet
2015-01-18 07:58:28 -05:00
snippet vf "Function assigned to var"
2017-02-11 08:01:38 -05:00
${1:var }${2:function_name} = function $2($3) {
${VISUAL}$0
2015-01-18 07:58:28 -05:00
};
2016-03-14 06:04:57 -04:00
endsnippet
snippet af "Anonymous Function" i
function($1) {
${VISUAL}$0
}
2012-08-16 23:41:25 -04:00
endsnippet
2015-01-18 07:58:28 -05:00
snippet iife "Immediately-Invoked Function Expression (iife)"
2015-12-08 08:20:04 -05:00
(function(${1:window}) {
${VISUAL}$0
2015-01-18 07:58:28 -05:00
}(${2:$1}));
2012-08-16 23:41:25 -04:00
endsnippet
snippet timeout "setTimeout function"
setTimeout(function() {
${VISUAL}$0
}${2:.bind(${3:this})}, ${1:10});
endsnippet
2014-07-02 07:18:18 -04:00
snippet fi "for prop in obj using hasOwnProperty" b
for (${1:prop} in ${2:obj}){
if ($2.hasOwnProperty($1)) {
${VISUAL}$0
}
}
endsnippet
2012-08-16 23:41:25 -04:00
# vim:ft=snippets: