You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
329 B
11 lines
329 B
;; 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))
|