<tag></tag>
如何像在 Emacs 中一样高效地输入一对 XML 标签?
我希望有某种自动完成行为。
答案1
将以下内容添加到您的 .emacs 文件。
;; associate xml, xsd, etc with nxml-mode
(add-to-list 'auto-mode-alist (cons (concat "\\." (regexp-opt '("xml" "xsd" "rng" "xslt" "xsl") t) "\\'") 'nxml-mode))
将自动完成标志设置为 true
(setq nxml-slash-auto-complete-flag t)