diff options
-rw-r--r-- | .dir-locals.el | 7 |
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))) |