gists/gists/format-org-mode-source-bloc...

11 lines
329 B
EmacsLisp
Raw Normal View History

2023-02-13 21:50:00 +00:00
;; https://github.com/lassik/emacs-format-all-the-code
(use-package format-all)
(use-package org
:config
(defun my/format-all-advice ()
(ignore-errors ; in case there's no language support
(call-interactively #'format-all-buffer)))
(advice-add #'org-edit-src-exit :before #'my/format-all-advice))