Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to clock-in and out of tasks within the same pomodoro #102

Open
doolio opened this issue Aug 31, 2022 · 2 comments
Open

Unable to clock-in and out of tasks within the same pomodoro #102

doolio opened this issue Aug 31, 2022 · 2 comments

Comments

@doolio
Copy link

doolio commented Aug 31, 2022

With my list of tasks visible in my org-agenda view I would like to be able to clock-into a task, work on it and clock-out if completed even if the pomodoro timer has not expired. This doesn't seem possible. Is that the case?

My configuration if relevant is as follows:

(use-package org-pomodoro               ; Pomodoro technique.
  :after org-agenda
  :bind (nil
         :map org-agenda-mode-map
         ([remap org-agenda-clock-in] . org-pomodoro)))
@MartinNowak
Copy link

I usually just org-clock-in on the new task and the pomodoro timer keeps running (now on the new task).
Haven't tried with org-agenda-clock-in but would assume it to behave identically.

Indeed the catch here is to use normal clock-in rather than org-pomodoro, so I picked a separate keybinding.

(use-package org
  :ensure t
  :bind (:map org-mode-map
         ("C-c C-x C-p" . org-pomodoro)))

@doolio
Copy link
Author

doolio commented Jul 13, 2023

use normal clock-in rather than org-pomodoro

But doesn't that then mean you start two timers every time?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants