expand macros in preview
See original GitHub issueadd the expanded version of a macro to macro preview window e.g.
#define MIN(_x, _y) (((_x) < (_y)) ? (_x) : (_y))
...
/*
currently the macro preview window just shows the macro definition.
instead of the definition it could expand to show the definition and
the expanded macro in preview window. in this case:
MIN(_x, _y) (((_x) < (_y)) ? (_x) : (_y))
->
(((3) < (4)) ? (3) : (4))
*/
z = MIN(3, 4);
Issue Analytics
- State:
- Created 2 years ago
- Reactions:6
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Macro Expansion Preview window is too small.
When I hover a mouse on a macro function in VS2019, I can see a Macro Expansions and a Macros definitions which is...
Read more >c preprocessor - Seeing expanded C macros - Stack Overflow
I want to just see it somehow expanded automagically, instead of searching for every macro, every step of the way. UPDATE. I tried...
Read more >Solved: How to expand macros in a Splunk search?
New in 6.6, there is now a keystroke to expand macros in the search window! Click inside your search and press cmd-shift-E (on...
Read more >2.1.7. Macro Expansion
Just hover cursor on the Macro. See the full expansion of the Macro. Full expansion of the NEEDBITS macro. If this is an...
Read more >What happened to the 'expand macro' option?
It never went anywhere :) You can expand a macro via the "Substitute macro call" context action. As with other context actions, you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@HighCommander4 Hi, would you guys accept a patch like this: prototype in https://github.com/llvm/llvm-project/compare/main...daiyousei-qz:expand-macro-on-hover
Can we have expansion information in Hover window?