From 74747c981660dc3e8e23480f8484db6d5f439df0 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 23 Jul 2025 20:37:49 +0200 Subject: Disable auto-fill-mode (properly I hope) --- .dir-locals.el | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to '.dir-locals.el') diff --git a/.dir-locals.el b/.dir-locals.el index 8395dfc..20191b9 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,10 +1,13 @@ -((csv-mode . ((number-format-predicate - . (lambda (beg end) - (save-excursion - (goto-char beg) - (not (bolp))))))) - (go-ts-mode . ((comment-start . "/* ") - (comment-end . " */") - (comment-continue . " ") - (require-final-newline . t))) - (mhtml-mode . ((auto-fill-mode . nil)))) \ No newline at end of file +((csv-mode + ((number-format-predicate + . (lambda (beg end) + (save-excursion + (goto-char beg) + (not (bolp))))))) + (go-ts-mode + ((comment-start . "/* ") + (comment-end . " */") + (comment-continue . " ") + (require-final-newline . t))) + (mhtml-mode + ((eval . (add-hook 'mhtml-mode-hook (lambda () (auto-fill-mode -1))))))) \ No newline at end of file -- cgit v1.2.3