在 emacs 中对齐 C 变量声明而不包含 * 字符
我喜欢在 emacs 中使用align-current。对于变量声明,它这样做:
my_function(
int *foo,
double **pfoo,
int bar)
^
1234567890123456
(align-to-tab-stop 是 t,c-basic-offset 是 4)
但我更喜欢变量名称与制表位对齐,忽略指针 *
的,像这样:
my_function(
int *foo,
double **pfoo,
int bar)
^
1234567890123456
我不知道如何更改 c 变量声明对齐规则来实现这一点。在我的风格中,*
始终位于变量名称旁边,因此解决方案仅适用于这种情况是可以的。 (实际上我想为 C++ 执行此操作,因此我想忽略 *
和 `&'。)
I like using align-current in emacs. For variable declarations it does this:
my_function(
int *foo,
double **pfoo,
int bar)
^
1234567890123456
(align-to-tab-stop is t, and c-basic-offset is 4)
But I'd prefer the variable names to be aligned to the tab stop, ignoring the pointer *
's, like this:
my_function(
int *foo,
double **pfoo,
int bar)
^
1234567890123456
I can't figure out how to change the c-variable-declaration alignment rule to get this. In my style the *
's are always next to the variable name, so it's ok for the solution to work only for that case. (And actually I want to do this for C++, so I want to ignore both *
's and `&'s.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试align-regexp 的变体。
Mxalign-entire 应该可以。
You can try variation of align-regexp.
M-x align-entire should do.
看一下规则“文本-美元-数字”。它知道如何对齐美元金额以使小数点对齐。您想要的内容是相关的,因为您希望文本位于目标列的左侧和右侧。
Take a look at the rule text-dollar-figure. It knows how to align dollar amounts such that the decimal periods line up. What you want is related, since you want text to fall both left and right of the goal column.