Karsten Heymann <karsten.heym...@blue-cable.net> writes:

> Hi Carsten,
>
> Carsten Dominik <carsten.domi...@gmail.com> writes:
>> On Apr 12, 2010, at 3:05 PM, Karsten Heymann wrote:
>>> does anyone have a solution to combine org-clock-goto with
>>> org-narrow-to-subtree, so that upon keypress I get a buffer with only
>>> the currently clocked task in it? Maybe this could even become a
>>> optional parameter for org-clock-goto?
>>
>> (defun my-clock-goto-narrow ()
>>    (interactive)
>>    (when (org-clock-is-active)
>>       (org-clock-goto)
>>       (org-narrow-to-subtree)))
>>
>> (define-key global-map "\C-cc" my-clock-goto-narrow)
>
> Thanks, applied. :-)

here is a slight variation I use which lists older clocked tasks if
there is not one already clocked in. It also restores the window layout.

,----
| (defun rgr/org-add-note-to-current-task ()
|   (interactive)
|     (save-window-excursion
|     (if(org-clock-is-active)
|         (org-clock-goto)
|       (org-clock-goto t))
|     (org-narrow-to-subtree)
|     (org-add-note)))
| 
| (define-key global-map "\C-cn" 'rgr/org-add-note-to-current-task)
`----




_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to