hover-over display of macro definitions
When debugging C++ code in Visual Studio, the hover-over display of macro definitions does not show the expanded content,
I think it might be that during debugging, the mouse hover display from the Visual Studio debugger module is overlapping with ReSharper's display,
Can this problem be solved
Please sign in to leave a comment.
Hello,
You're right, when a debugger session is active only debugger tooltips are visible right now. I believe this behavior makes sense - you usually want to inspect values of variables when you're debugging. Normal editor tooltips are more useful when you're editing or inspecting code. We'll [investigate](https://youtrack.jetbrains.com/issue/RSRP-502131/Investigate-behavior-of-tootips-during-a-debugger-session) whether we can and want to change this behavior somehow.
Thanks!
I think if you encounter variables displaying variable values, there is no problem. If you encounter macro definitions, you can extend the values of the macro definitions. Otherwise, when debugging, you will encounter many complex macro definition projects, such as MySQL source code. Debugging will be very difficult because you have to extend the macro definitions yourself to understand the code logic, which is very time-consuming. I think it's possible to provide a shortcut key to display macro definitions. Thank you
You can use “Edit | IntelliSense | Quick Info" (Ctrl-K, Ctrl-I) to display normal quick info even during debugging.
ok,Thank you,there is no problem