aboutsummaryrefslogtreecommitdiffstats
path: root/oni-nxml/oni-nxml.el
diff options
context:
space:
mode:
Diffstat (limited to 'oni-nxml/oni-nxml.el')
-rw-r--r--oni-nxml/oni-nxml.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/oni-nxml/oni-nxml.el b/oni-nxml/oni-nxml.el
index fe188a5..07c1c87 100644
--- a/oni-nxml/oni-nxml.el
+++ b/oni-nxml/oni-nxml.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 2019.0904.210700
+;; Version: 2019.1210.225630
;; Package-Requires: (oni-yasnippet)
;; This program is free software; you can redistribute it and/or modify
@@ -45,6 +45,13 @@
(add-to-list 'yas-snippet-dirs oni-nxml-snippets-dir t))
(yas-load-directory oni-nxml-snippets-dir))
+(defun oni-nxml--auto-fill-mode ()
+ "Enable ‘auto-fill-mode’ only for comments."
+ (setq-local comment-auto-fill-only-comments t)
+ (auto-fill-mode))
+
+(add-hook 'nxml-mode-hook 'oni-nxml--auto-fill-mode)
+
;;;###autoload
(add-to-list 'auto-mode-alist '("\\.targets\\'" . nxml-mode))
;;;###autoload