问问题
510 次
2 回答
5
(setq perl-prettify-symbols nil)
应该这样做。说实话,我无法弄清楚它为什么/如何影响您复制和粘贴文本的能力,因为替换只是一种视觉“幻觉”。我可以理解可读性的问题,这就是我添加perl-prettify-symbols
配置的原因。
于 2013-04-27T05:11:11.537 回答
1
M-x auto-composition-mode
should disable the auto-composition minor mode for the buffer, or M-x global-auto-composition-mode
to do it globally.
If you want to turn it off forever you could add this to your .emacs:
(custom-set-variables
'(global-auto-composition-mode nil))
于 2013-04-26T23:21:27.903 回答