mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-02 22:17:21 +01:00
16 lines
191 B
Plaintext
16 lines
191 B
Plaintext
priority -30
|
|
|
|
# AMD (Asynchronous Module Definition) snippets
|
|
|
|
snippet def "define an AMD module"
|
|
define([
|
|
'${1:backbone}'
|
|
], (
|
|
${2:Backbone}
|
|
) => {
|
|
$0
|
|
});
|
|
endsnippet
|
|
|
|
# vim:ft=snippets:
|