如何在emacs cperl模式下停止自动格式化?

mmc*_*coo 1 emacs perl cperl-mode

当我在cperl模式下进行缩进区域时

if ($x) { next; }

Emacs将其重新格式化为:

if ($x) {
  next;
}

我怎么能让它停止这样做?

注意:这个问题原来是说这种重新格式化是在yanking时发生的.我也设置了缩进区域.

mmc*_*coo 5

(setq cperl-break-one-line-blocks-when-indent nil)
Run Code Online (Sandbox Code Playgroud)