diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-16 22:34:58 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-02-19 21:13:22 -0500 |
commit | 068971805ae5cda246ee33f771dc423d417f24a1 (patch) | |
tree | 56cf811ab7e21903a6e67c2f046cf6086debb198 /.dir-locals.el | |
parent | d318ccc36308171a74b4863ea25a3dded05a2851 (diff) | |
download | guix-068971805ae5cda246ee33f771dc423d417f24a1.tar.gz |
.dir-locals: Add let-keywords indentation rules.
* .dir-locals.el (scheme-mode): Add let-keywords indentation rules.
Diffstat (limited to '.dir-locals.el')
-rw-r--r-- | .dir-locals.el | 3 |
1 files changed, 3 insertions, 0 deletions
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)) |