Saner indentation

This commit is contained in:
qorg11 2020-11-30 11:38:11 +01:00
parent fe15d1dbf2
commit badb1cc67a
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -90,22 +90,12 @@
* Autoindentation
C-c n for indent-buffer. I don't use the rest.
#+BEGIN_SRC emacs-lisp
(defun untabify-buffer ()
(setq-default tab-width 5)
(defun indent-buffer ()
(interactive)
(untabify (point-min) (point-max)))
(defun indent-buffer ()
(interactive)
(indent-region (point-min) (point-max)))
(defun cleanup-buffer ()
"Perform a bunch of operations on the whitespace content of a buffer.
Including indent-buffer, which should not be called automatically on save."
(interactive)
(untabify-buffer)
(delete-trailing-whitespace)
(indent-buffer))
(save-excursion
(indent-region (point-min) (point-max) nil)))
(global-set-key (kbd "C-c n") 'indent-buffer)
#+END_SRC
* Shorcuts
@ -499,4 +489,3 @@ Including indent-buffer, which should not be called automatically on save."
[[./screenshot.png]]
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)