是否有可以格式化结构表的库?
类似的东西:
struct a {
char *s;
int c;
int b;
} sample[] = {
{"this is a test", 1, 4},
{"this",3,56544}
};
So the reformatting would be :
} sample[] = {
{"this is a test", 1, 4},
{"this" , 3, 56544}
};
答案 0 :(得分:4)
设置一个区域,其中包含sample[]
数组中的所有值,然后C-u M-x align
该区域。