This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 114
Functions inside nested anonymous functions don't display #8
Labels
Comments
Isn't this an issue with ctags' inability to recognize this as a symbol? From @tangent405's example: var winter = (function() {
console.log('winter');
});
var summer = function() {
console.log('summer');
}; When ctags generates the tags file, it gives me:
No mention of the winter function... |
I suggest that user could use his own ctag langdef regex as I did for lua, which already support anonymous functions. |
Thanks @yongkangchen for the link to those JS patterns 🌞 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Symbols view doesn't capture things like:
The text was updated successfully, but these errors were encountered: