You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't see any unexpected behavior. typedef int DMA_CHANNEL_REG gives the same colorization. What are you expecting? Also, our extension doesn't implement any C/C++ colorization -- it comes from atom/language-c, so any bug fixes would need to be filed/fixed there: https://github.com/atom/language-c/issues .
Oh, I got it. I thought that C language typedefed structure highlight was related to ms-vscode.cpptools regarding the definiton pop-up when I hover over it. I am sorry for the mistake. Thanks for your replay. I will move my question to https://github.com/atom/language-c/issues .
Environments:
Windows 7 sp1
VS Code 1.16.1
ms-vscode.cpptools, solely
issues:
/*code sample
/****************DMA CONTROL Register define *************************/
typedef struct _DMA_CHANNEL_REG
{
volatile unsigned int DMACC0SADDR;
volatile unsigned int DMACC0DADDR;
volatile unsigned int DMACC0LLI;
volatile unsigned int DMACC0CTRL;
volatile unsigned int DMACC0CONFIG;
}DMA_CHANNEL_REG;
*/
Just like the preceeding code I pasted, DMA_CHANNEL_REG is NOT highlighted!
But, when I hover over it, I can see its definition.
The text was updated successfully, but these errors were encountered: