在 emacs 中对齐 C 变量声明而不包含 * 字符

发布于 2024-11-28 22:44:22 字数 564 浏览 0 评论 0原文

我喜欢在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苍暮颜 2024-12-05 22:44:22

您可以尝试align-regexp 的变体。
Mxalign-entire 应该可以。

You can try variation of align-regexp.
M-x align-entire should do.

楠木可依 2024-12-05 22:44:22

看一下规则“文本-美元-数字”。它知道如何对齐美元金额以使小数点对齐。您想要的内容是相关的,因为您希望文本位于目标列的左侧和右侧。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文