From 612c0d1e31b72b3751e700229e1974ad0f440d41 Mon Sep 17 00:00:00 2001 From: Stuart Mumford Date: Mon, 29 Mar 2021 10:20:01 +0100 Subject: [PATCH] Do not use org-clock-goto to get tags --- org-clock-waybar.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/org-clock-waybar.el b/org-clock-waybar.el index 31cff71..d15e82d 100644 --- a/org-clock-waybar.el +++ b/org-clock-waybar.el @@ -84,9 +84,9 @@ (defun org-clock-waybar--get-tags () "Get the tags of the currently clocked-in task." (when (org-clocking-p) - (save-window-excursion - (org-clock-goto) - (org-get-tags)))) + (or (org-with-point-at org-clock-marker (org-get-tags)) + "") + )) (defun org-clock-waybar--get-clocked-task-json () "Get the currently clocked-in task’s data as a stringified JSON object.