在我的emacs中,如果跨越80列的传奇限制,则会发生自动换行。我该如何禁用它?
答案 0 :(得分:6)
使用次要模式auto-fill-mode
完成Emacs中的自动换行。您可以通过运行命令M-x auto-fill-mode RET
或将其添加到挂钩来禁用它:
(defun my-html-mode-hook ()
(auto-fill-mode -1))
(add-hook 'html-mode-hook 'my-html-mode-hook)
答案 1 :(得分:2)
将此添加到您的.emacs:
(defun my-html-mode-setup ()
(auto-fill-mode -1))
(add-hook 'html-mode-hook 'my-html-mode-setup)