support for prototypejs syntax
Brought to you by:
dv__
Hi,
i just test this plugin in notepad++, and i want to know if is there chance to have the support for two js framework i use prototypejs and sproutcore.
Witch they use particular syntax for class / function / member like :
var Person = Class.create();
Person.prototype = {
initialize: function(name) {
this.name = name;
},
say: function(message) {
return this.name + ': ' + message;
}
};
thanks a lot