Emacs CPerl 模式:缩进区域中的错误

发布于 2024-09-10 11:20:13 字数 737 浏览 7 评论 0原文

我使用 CPerl 模式在 Emacs 中编辑 Perl 脚本。但是 Emacs 函数 indent-region 在这种模式下被破坏了。如果我有一个变量:

my $num_elements;

它就变得

my $num_ elements;

非常烦人,尤其是因为我习惯在变量名中使用下划线,而且我一直按 indent-region 的键盘快捷键(实际上是一个自定义的 <基于它的 code>indent-whole-buffer 函数),它已经是自动的。

有谁知道如何修复它?

我正在使用这个 Emacs:

GNU Emacs 21.4.1 (x86_64-redhat-linux-gnu, X toolkit, Xaw3d scroll bars) 
  of 2007-12-10 on hs20-bc1-5.build.redhat.com

更新: 实际上,这只发生在 foreach (或类似):

foreach my $num_elements (1,2) {}

变为:

foreach my $num_ elements (1,2) {}

I edit my Perl scripts in Emacs, using CPerl mode. But the Emacs function indent-region is broken in that mode. If I have a variable:

my $num_elements;

it becomes

my $num_ elements;

It's very annoying, especially since I am used to using underscores in variable names, and I press the keyboard shortcut for indent-region all the time (actually, a custom indent-whole-buffer function based on it), it's already automatic.

Does anyone know how to fix it?

I am using this Emacs:

GNU Emacs 21.4.1 (x86_64-redhat-linux-gnu, X toolkit, Xaw3d scroll bars) 
  of 2007-12-10 on hs20-bc1-5.build.redhat.com

UPDATE: Actually this happens only after a foreach (or similar):

foreach my $num_elements (1,2) {}

becomes:

foreach my $num_ elements (1,2) {}

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

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

发布评论

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

评论(1

黎歌 2024-09-17 11:20:13

cperl-mode 的更新版本可用。 官方版本支持 5.10 和 Moose 的非官方版本。更新到其中之一应该可以解决您的问题。

Mx describe-variable cperl-version 将显示您正在使用的 cperl-mode 版本。

Updated versions of cperl-mode are available. The official version and an unofficial version that's aware of 5.10 and Moose. Updating to one of those should fix your problem.

M-x describe-variable cperl-version will show what version of cperl-mode you're using.

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