fix(org): make sure org-reveal is called in the right buffer

Sometimes, `org-reveal` is called in the wrong buffer which throws an
error.  For example, `org-link-open-from-string` creates an temporary
org-mode buffer that gets killed very quickly which means that
`org-reveal` gets called in a different buffer.  I have also had issues
with org-reveal getting called in the org-roam buffer, which is why this
commit also saves the buffer it was called in.
This commit is contained in:
Leo Okawa Ericson
2023-10-11 16:53:30 +02:00
parent 986398504d
commit bb3431ad59

View File

@ -508,7 +508,10 @@ All my (performant) foldings needs are met between this and `org-show-subtree'
;; Must be done on a timer because `org-show-set-visibility' (used by
;; `org-reveal') relies on overlays that aren't immediately available
;; when `org-mode' first initializes.
(run-at-time 0.1 nil #'org-reveal '(4))))
(let ((buf (current-buffer)))
(unless (doom-temp-buffer-p buf)
(run-at-time 0.1 nil (λ! (with-current-buffer buf
(org-reveal '(4)))))))))
;;;###autoload
(defun +org-remove-occur-highlights-h ()