summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2025-06-06 01:43:14 +0200
committerThomas Voss <mail@thomasvoss.com> 2025-06-06 01:43:14 +0200
commit169bceff8538bb985aa7b37171d1527c4cce4e0a (patch)
tree62949420171610a344935ffe707526a842852836
parent2c726e551d90d20bcd2d78545c369864cc9038e5 (diff)
Set ‘number-format-predicate’
-rw-r--r--.dir-locals.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 8895f93..855d8c2 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,4 +1,9 @@
-((go-ts-mode . ((comment-start . "/* ")
+((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)))