diff options
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-org.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-org.el b/.emacs.d/lisp/init-org.el index 9d4cea2..1f8e017 100644 --- a/.emacs.d/lisp/init-org.el +++ b/.emacs.d/lisp/init-org.el @@ -26,8 +26,12 @@ (funcall fn)) (advice-add 'org-agenda-quit :around 'gx/org-agenda-quit) +(defun gx/org-refile (fn &optional arg default-buffer rfloc msg) + (funcall-interactively fn arg default-buffer rfloc msg) + (org-save-all-org-buffers)) +(advice-add 'org-refile :around 'gx/org-refile) + (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) -(add-hook 'org-after-refile-insert-hook 'org-save-all-org-buffers) ;; keybinds (with-eval-after-load 'evil |