From 9ff7c848a1e3f946003dee9d5678a52c45583833 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 28 May 2023 15:30:18 +0200 Subject: [PATCH] Change shortcut for interactive clock selection This is for consistency with all other commands that use "s" to select a running clock from the history. --- site-lisp/db-org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index f20d5bb..e886e7e 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -831,10 +831,10 @@ forces clocking in of the default task." ("w" (db/org-clock-in-work-task) "work") ("h" (db/org-clock-in-home-task) "home") ("b" (db/org-clock-in-break-task) "break") - ("i" (lambda () + ("s" (lambda () (interactive) (org-clock-in '(4))) - "interactive") + "select") ("a" counsel-org-goto-all "goto") ("o" org-clock-out "clock out") ("l" db/org-clock-in-last-task "last")