Documentation: Add clang-format variant to EmacsConfiguration.md

Add a variant of auto formatting using clang-format that doesn't use
additional packages. It works by adding a buffer-local hook to
`'before-save` for all C++ project files.
This commit is contained in:
Riyyi 2022-08-06 12:35:29 +02:00 committed by Brian Gianforcaro
parent 6744402dbf
commit 77f0a66d2f
Notes: sideshowbarker 2024-07-17 08:22:21 +09:00

View File

@ -54,4 +54,10 @@ There are multiple packages to handle auto formatting with
- [format-all-mode](https://github.com/lassik/emacs-format-all-the-code)
- [clang-format-plus](https://github.com/SavchenkoValeriy/emacs-clang-format-plus)
Alternatively, this can be done without additional packages, using `lsp-mode`.
You can use the following `.dir-locals.el` file placed in the project root:
```lisp
((c++-mode
(eval add-hook 'before-save-hook #'lsp-format-buffer nil t)))
```