mirror of
https://github.com/vale981/apheleia
synced 2025-03-04 17:11:40 -05:00
Use lisp-indent formatter in emacs-lisp-mode (#223)
What it says in the subject :) Apheleia is opinionated about using a formatter, and which to use as a default, in every other mode it supports, so it seems it should have an opinion about emacs-lisp-mode, too? --------- Co-authored-by: Radon Rosborough <radon@intuitiveexplanations.com>
This commit is contained in:
parent
8cccf12df2
commit
f4157e8c39
2 changed files with 3 additions and 0 deletions
|
@ -28,6 +28,7 @@ The format is based on [Keep a Changelog].
|
||||||
* More tree-sitter based major modes have been added to
|
* More tree-sitter based major modes have been added to
|
||||||
`apheleia-mode-alist` ([#191]).
|
`apheleia-mode-alist` ([#191]).
|
||||||
* Autoload the apheleia-goto-error command ([#215]).
|
* Autoload the apheleia-goto-error command ([#215]).
|
||||||
|
* Use `lisp-indent` as default formatter for `emacs-lisp-mode` ([#223])
|
||||||
|
|
||||||
### Internal Changes
|
### Internal Changes
|
||||||
* Refactored the organisation of the apheleia package for ease of
|
* Refactored the organisation of the apheleia package for ease of
|
||||||
|
@ -89,6 +90,7 @@ The format is based on [Keep a Changelog].
|
||||||
[#213]: https://github.com/radian-software/apheleia/pull/213
|
[#213]: https://github.com/radian-software/apheleia/pull/213
|
||||||
[#214]: https://github.com/radian-software/apheleia/pull/214
|
[#214]: https://github.com/radian-software/apheleia/pull/214
|
||||||
[#215]: https://github.com/radian-software/apheleia/pull/215
|
[#215]: https://github.com/radian-software/apheleia/pull/215
|
||||||
|
[#223]: https://github.com/radian-software/apheleia/pull/223
|
||||||
|
|
||||||
## 3.2 (released 2023-02-25)
|
## 3.2 (released 2023-02-25)
|
||||||
### Features
|
### Features
|
||||||
|
|
|
@ -231,6 +231,7 @@ rather than using this system."
|
||||||
(elixir-mode . mix-format)
|
(elixir-mode . mix-format)
|
||||||
(elixir-ts-mode . mix-format)
|
(elixir-ts-mode . mix-format)
|
||||||
(elm-mode . elm-format)
|
(elm-mode . elm-format)
|
||||||
|
(emacs-lisp-mode . lisp-indent)
|
||||||
(fish-mode . fish-indent)
|
(fish-mode . fish-indent)
|
||||||
(go-mode . gofmt)
|
(go-mode . gofmt)
|
||||||
(go-ts-mode . gofmt)
|
(go-ts-mode . gofmt)
|
||||||
|
|
Loading…
Add table
Reference in a new issue