Simplify Org clocking hydra

No need to define an anonymous function her, just make the call
directly.
This commit is contained in:
Daniel - 2024-03-09 15:03:10 +01:00
parent 118b50c8da
commit aadca01244
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 2 additions and 6 deletions

View File

@ -860,12 +860,8 @@ Current Task: %s(replace-regexp-in-string \"%\" \"%%\" (or org-clock-current-tas
("w" (db/org-clock-in-work-task) nil)
("h" (db/org-clock-in-home-task) nil)
("b" (db/org-clock-in-break-task) nil)
("s" (lambda ()
(interactive)
(org-clock-in '(4)))
nil)
("j" (db/org-clock-goto-first-open-checkbox)
nil)
("s" (org-clock-in '(4)) nil)
("j" (db/org-clock-goto-first-open-checkbox) nil)
("o" org-clock-out nil)
("l" db/org-clock-in-last-task nil))