Hello,
>
> At present taglist will only list javascript functions of the
> form:
> function func(){ }
> -- At least, so far as I can configure
>
> It would be great if taglist would list javascript function
> literals. I.E. of the form
>
> funcname: function(){}
> // OR
> instance.funcname = function(){}
>
> Can this be done?
>
The taglist plugin relies on exuberant ctags to parse a file and generate
the tags defined in that file.
If exuberant ctags supports generating tags for Javascript function literals,
then the taglist plugin can display them.
Try running exuberant ctags from the command line on the javascript file
and see whether the tags are generated for function literals.
The taglist plugin provides several configuration variables to control the
options that are passed to exuberant ctags.
- Yegappan
>
> At present taglist will only list javascript functions of the
> form:
> function func(){ }
> -- At least, so far as I can configure
>
> It would be great if taglist would list javascript function
> literals. I.E. of the form
>
> funcname: function(){}
> // OR
> instance.funcname = function(){}
>
> Can this be done?
>
The taglist plugin relies on exuberant ctags to parse a file and generate
the tags defined in that file.
If exuberant ctags supports generating tags for Javascript function literals,
then the taglist plugin can display them.
Try running exuberant ctags from the command line on the javascript file
and see whether the tags are generated for function literals.
The taglist plugin provides several configuration variables to control the
options that are passed to exuberant ctags.
- Yegappan