Saner indentation
This commit is contained in:
parent
fe15d1dbf2
commit
badb1cc67a
1 changed files with 8 additions and 19 deletions
21
config.org
21
config.org
|
@ -90,22 +90,12 @@
|
||||||
* Autoindentation
|
* Autoindentation
|
||||||
C-c n for indent-buffer. I don't use the rest.
|
C-c n for indent-buffer. I don't use the rest.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(setq-default tab-width 5)
|
||||||
(defun untabify-buffer ()
|
(defun indent-buffer ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(untabify (point-min) (point-max)))
|
(save-excursion
|
||||||
|
(indent-region (point-min) (point-max) nil)))
|
||||||
(defun indent-buffer ()
|
(global-set-key (kbd "C-c n") '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))
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Shorcuts
|
* Shorcuts
|
||||||
|
@ -499,4 +489,3 @@ Including indent-buffer, which should not be called automatically on save."
|
||||||
|
|
||||||
[[./screenshot.png]]
|
[[./screenshot.png]]
|
||||||
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue