#define BIT(n) ( 1<<(n) )
#define A BIT(0)
void main(void)
{
if(A == 0)
{
}
}
I want to see the definition of A, vs code will jump to #define BIT(n) ( 1<<(n) ) I hope vs code jump to #define A BIT(0) there are any way to achive that?
#define BIT(n) ( 1<<(n) )
#define A BIT(0)
void main(void)
{
if(A == 0)
{
}
}
I want to see the definition of A, vs code will jump to #define BIT(n) ( 1<<(n) ) I hope vs code jump to #define A BIT(0) there are any way to achive that?