A few javascript libraries define functions as a series of associate arrays:

Example

Foo.Bar = Class.create();
Foo.Bar.prototype = {
        initialize : function( args ) {
                //some code
        },
        execute : function() {
                //some code
        },
        cancel : function() {
                //some code
        }
}

I can't seem to get ctags to understand this syntax so I can lookup
these functions in VIM.

Any suggestions?

-Mark

Reply via email to