From 068971805ae5cda246ee33f771dc423d417f24a1 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Thu, 16 Feb 2023 22:34:58 +0100 Subject: [PATCH] .dir-locals: Add let-keywords indentation rules. * .dir-locals.el (scheme-mode): Add let-keywords indentation rules. --- .dir-locals.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.dir-locals.el b/.dir-locals.el index a331bde0f1..b8b0fec4ca 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -72,6 +72,9 @@ (eval . (put 'substitute* 'scheme-indent-function 1)) (eval . (put 'match-record 'scheme-indent-function 2)) + ;; TODO: Contribute these to Emacs' scheme-mode. + (eval . (put 'let-keywords 'scheme-indent-function 3)) + ;; 'modify-inputs' and its keywords. (eval . (put 'modify-inputs 'scheme-indent-function 1)) (eval . (put 'replace 'scheme-indent-function 1))