我目前可以使用sgml-pretty-print在emacs中打印一个xml文件,但这是一个手动过程:
我希望这是自动发生的(或者至少有一些选择)。我是emacs / elisp的新手,并且不明白如何:
答案 0 :(得分:6)
这应该适合你:
(add-hook 'find-file-hook 'my-sgml-find-file-hook)
(defun my-sgml-find-file-hook ()
"run sgml pretty-print on the file when it's opened (if it's sgml)"
(when (eq major-mode 'sgml-mode)
(sgml-pretty-print (point-min) (point-max))))
关键信息包括find-file-hook,point-min( - max)和major-mode。
如果您想了解有关elisp的更多信息,可以查看此question,其中提供了有关如何解决问题的一些指示。
答案 1 :(得分:4)
Trey Jackson's answer的一种稍微简单的替代方案。只需将其添加到您的~/.emacs
文件中:
(add-hook 'sgml-mode-hook #'(lambda ()
(sgml-pretty-print (point-min) (point-max))))