5

我拼命尝试使用制表符而不是空格使我的 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 文件中的制表符缩进?为什么我的钩子不起作用?

4

2 回答 2

7

(c-)tab-always-indent控制按 TAB 键的作用,而不是插入的内容。

设置indent-line-functioninsert-tab会让你失去模式的智能缩进。

如果您使用的是现代 emacs,那么您很可能使用的是 nxml-mode 而不是 xml-mode。在那种情况下nxml-mode-hook应该是你应该做的(setq indent-tabs-mode t)

如果您使用的是默认 sgml 模式,sgml-mode-hook则应该是您应该做的那个(setq indent-tabs-mode t)(在您正在使用的代码段中psgml-mode-hook

(并且 tab-always-indent 和 indent-line-function 可以保持默认状态)

编辑

总结以下对话:变量nxml-child-indent不应小于tab-width

(并且由于这些变量的默认 emacs 值是 2 和 8,恕我直言,使用 emacs 中的制表符将 emacs 配置为缩进 XML 比应有的困难)

于 2013-08-08T09:38:09.830 回答
4

我花了很长时间才nxml-mode开始使用标签。我最终使用了smart-tabs-mode,它提供了一个简洁的解决方案。对于它的价值,这是我最终确定的配置:

;; indentation using smart-tabs-mode
(setq-default tab-width 4)
(smart-tabs-insinuate 'c 'c++ 'java 'javascript 'cperl 'python 'ruby 'nxml)

;; nxml-mode
(setq 
    nxml-child-indent 4
    nxml-attribute-indent 4
    nxml-slash-auto-complete-flag t)

您实际上不需要 set nxml-slash-auto-complete-flag,但它可以让您自动完成结束标签,这非常好。

于 2014-06-02T20:18:42.137 回答