Skip to content

Instantly share code, notes, and snippets.

@bellthoven
bellthoven / backbone.snippets
Created January 27, 2012 13:50 — forked from milosdakic/backbone.snippets
Backbone.js Vim Snippets
# Class
snippet bc
var ${1:Thing} = Class.extend({
initialize: function(${2:Attributes}) {
}
});
# Model
snippet bbm
var ${1:Thing} = Backbone.Model.extend({