mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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:
@ -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 ()
|
||||
|
Reference in New Issue
Block a user