我是一名Emacs用户,在配置编辑器方面没有任何技能。在我从haskell-mode 2.4升级到2.7之后,我注意到了两个变化:
我看到haskell-mode 2.7默认使用次模式haskell-indentation-mode,而2.4的行为以haskell-indent-mode的形式保存。如果我先关闭前者,然后关闭后者,我想恢复的行为(即缩进感觉就像之前一样,退格/删除会删除突出显示的块)。
但是,每当我打开带有.hs后缀的文件时,我都无法自动执行此操作。我尝试了类似的各种事情(remove-hook 'haskell-mode-hook 'turn-on-haskell-indentation-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent-mode)
以及类似的东西,但我最终得到了标准模式或者没有缩进和doc的普通haskell模式。
有什么想法吗?
解决方案(感谢nominolo):
(remove-hook 'haskell-mode-hook 'turn-on-haskell-indent)
(remove-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
(add-hook 'haskell-mode-hook 'my-haskell-mode-hook)
(defun my-haskell-mode-hook ()
(haskell-indentation-mode -1) ;; turn off, just to be sure
(haskell-indent-mode 1) ;; turn on indent-mode
)
答案 0 :(得分:15)
配置此类内容的最佳方法是编写自定义挂钩:
(add-hook 'haskell-mode-hook 'my-haskell-mode-hook)
(defun my-haskell-mode-hook ()
(haskell-indentation-mode -1) ;; turn off, just to be sure
(haskell-indent-mode 1) ;; turn on indent-mode
;; further customisations go here. For example:
(setq locale-coding-system 'utf-8 )
(flyspell-prog-mode) ;; spell-checking in comments and strings
;; etc.
)
你也可以在那里粘贴一个匿名函数,但是如果你想试验一些设置,那么拥有一个命名函数会更容易。只是重新定义函数(并重新打开Haskell文件)将为您提供新的行为。