使用emacs格式化C中的结构表

时间:2015-01-21 21:29:54

标签: emacs elisp

是否有可以格式化结构表的库?

类似的东西:

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}
};

1 个答案:

答案 0 :(得分:4)

设置一个区域,其中包含sample[]数组中的所有值,然后C-u M-x align该区域。