From 977f795e0304204b6d4a397dab426009ec3957f9 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 10 Dec 2019 23:16:15 -0800 Subject: Enable ‘auto-fill-mode’ for comments in most programming modes The ones that are already backed by a formatter, such as Java, Python and sh don’t need it. --- oni-nxml/oni-nxml.el | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'oni-nxml') 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 ;; 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 -- cgit v1.2.3-54-g00ecf