You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of the reasons why workspace symbols don't feel that responsive is probably the sheer amount of stuff it reports.. I don't think you really care about locals + function params at that level - it should be fine to only have them for document symbols. Especially if that means a performance boost.
I mean, seriously, "ignored" local vars too? :D
Another thing I've noticed in TypeScript's workspace symbols is that they only start returning results after you type at least a single character, while for Haxe is starts searching right away and usually hangs for a split-second because of that. That's probably something to implement on the vshaxe side though.
The text was updated successfully, but these errors were encountered:
Another thing I've noticed in TypeScript's workspace symbols is that they only start returning results after you type at least a single character, while for Haxe is starts searching right away and usually hangs for a split-second because of that. That's probably something to implement on the vshaxe side though.
(request is sent when yellow cursor disappears, and total delay includes parsing the whole json)
Edit:
Admittedly, vscode is slower but that's partly because it seems to be debouncing there:
But yeah, for typescript it does nothing until at least one character is typed. Not sure it's a good reason for us to prevent other tools from working with worspace-wide symbols, though.
One of the reasons why workspace symbols don't feel that responsive is probably the sheer amount of stuff it reports.. I don't think you really care about locals + function params at that level - it should be fine to only have them for document symbols. Especially if that means a performance boost.
I mean, seriously, "ignored" local vars too? :D
Another thing I've noticed in TypeScript's workspace symbols is that they only start returning results after you type at least a single character, while for Haxe is starts searching right away and usually hangs for a split-second because of that. That's probably something to implement on the vshaxe side though.
The text was updated successfully, but these errors were encountered: