From c6e359546d4662d0ea87244a8506a8bab9138d72 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 1 Nov 2024 18:13:03 +0100 Subject: [PATCH] Do not show complete item when jumping to it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This should avoid “visibility jumps” when jumping to a currently clocked in item that is already revealed. --- site-lisp/db-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 94ba25c..0139a71 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -1678,7 +1678,7 @@ clocked-in tasks to jump to." (select-window target-window) (if (or (< m (point-min)) (> m (point-max))) (widen)) (goto-char m) - (org-fold-show-entry) + (org-fold-reveal) (org-fold-hide-drawer-all) (db/org-goto-first-open-checkbox-in-headline :silent) (org-reveal)