fix(format): use correct lisp format function

`apheleia--indent-lisp-buffer` does not exist.

Ref: #6369
This commit is contained in:
Ian Kerins 2023-09-13 20:41:33 -04:00 committed by Henrik Lissner
parent a234d8e9c0
commit 5efec260ef
4 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@
:interpreter ("scsh" . scheme-mode)
:hook (scheme-mode . rainbow-delimiters-mode)
:config
(set-formatter! 'lisp-indent #'apheleia--indent-lisp-buffer :modes '(scheme-mode))
(set-formatter! 'lisp-indent #'apheleia-indent-lisp-buffer :modes '(scheme-mode))
(advice-add #'scheme-indent-function :override #'+scheme-indent-function-a))