我拼命尝试使用制表符而不是空格使我的 emacs xml (sgml?) 模式缩进。到目前为止我尝试了什么:
(defun my-xml-hook ()
(setq c-tab-always-indent t
tab-width 4
indent-tabs-mode t) ; use tabs for indentation
(setq indent-line-function 'insert-tab)
)
(add-hook 'xml-mode-hook 'my-xml-hook)
(defun local-sgml-mode-hook
(setq fill-column 70
indent-tabs-mode t
next-line-add-newlines nil
sgml-indent-data t)
(auto-fill-mode t)
(setq indent-line-function 'insert-tab)
)
(add-hook 'psgml-mode-hook '(lambda () (local-psgml-mode-hook)))
但是没有任何效果,在编辑 *.xml 文件时,缩进仍然会出现 2 个空格(emacs23 和 emacs24)。
请注意,我也有
(setq indent-tabs-mode nil)
在我的 .emacs 文件中,但是应该在之后调用钩子,因此应该覆盖它。
如何强制 emacs 使用 *.xml 文件中的制表符缩进?为什么我的钩子不起作用?