I have a fresh install of Visual Studio 2022 Community Edition, with the toolsets "Desktop development with C++" and "Linux development with C++" installed. Now when I use some class/method from the standard library, I only see the method signature:
What I'd like to see as well in that same popup is a short description/help of the method and the parameters. Is this usually working out of the box? If not, is there any plugin/extension for that functionality? If I develop a console app for Linux (with the same VS installation), the documentation is showing correctly:
Looking into the header files of the standard libraries confirms that the Windows library just doesn't contain those doc comments. Any way to get them?

