如何调整 qw// 的 cperl 模式缩进?

发布于 2024-09-08 10:41:20 字数 402 浏览 4 评论 0原文

这个问题< /a>,这是另一个问题。

我收到了,

my @browsers = qw/
                     Firefox
                     MSIE
/;

但我想

my @browsers = qw/
    Firefox
    MSIE
/;

在 Emacs 的 cperl 模式下使用什么设置来实现这一目标?

Following on from this question, here's another bugbear.

I am getting

my @browsers = qw/
                     Firefox
                     MSIE
/;

but I want

my @browsers = qw/
    Firefox
    MSIE
/;

What setting in cperl mode in Emacs might I use to achieve that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

熟人话多 2024-09-15 10:41:20

没有一个。 x// 作为特殊情况处理,并且有关该语句开头的行的缩进信息不可用:

http://github.com/jrockway/cperl-mode/blob/mx-declare/cperl-mode.el#L3074

这个可以通过在cperl-sniff-for-indentcperl-calculate-indent中进行一些修改来修复。欢迎补丁!

There isn't one. x// is handled as a special case, and the information about the indent of the line that starts the statement is not available:

http://github.com/jrockway/cperl-mode/blob/mx-declare/cperl-mode.el#L3074

This can be fixed with a bit of munging in cperl-sniff-for-indent and cperl-calculate-indent. Patch welcome!

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