Despite all it's limitations, there are a few features in Visual Studio's debugger which are quite practical, one being the Parallel Stacks window which is super practical to have a global view of a multi-threaded application with threads grouped by similar callstacks.
Typically this helps tracking contention (stuff waiting on a mutex) or grouping things by what they do (like bunch of network related threads, job manager processes, etc...)
Are there any plans for something like that?
Yes! Parallel stacks is one of very cool VS debugger features that many do not know. Once you do multiple threads, this view is super super useful during debugging.