I'm using VC+VAX as editer to code for many platforms, such as mingw, avr, stm32 and even remote linux host(Use samba to edit remote files, use plink to call gcc of remote host, and get output to vs output window). It's awesome#65281;
But VAX not recognize some gcc feature, such as the following code.
static void test(void)
{
struct aaa{
int aa;
char bb;
const char *cc;
};
struct aaa x = {
.aa = 1,
.bb = 'c',
.cc = "1234567",
};
}
And I'd like VAX to become a standalone editer very much. Or a vim plugin.