emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Loosing tasks with remember
@ 2010-04-13 19:13 Christian Zang
  2010-04-14  1:55 ` Bernt Hansen
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Zang @ 2010-04-13 19:13 UTC (permalink / raw)
  To: emacs-orgmode

Dear org-enthusiasts,

I have a remember template to file away quick notes and todos that looks like

(setq org-remember-templates
      '(("Todo" ?t "*** TODO %?\n %i\n" "~/Org/inbox.org" "Inbox")))

When a invoke a remember buffer and write something like

*** TODO Task 1

*** TODO Task 2

and file it away in my inbox.org file using C-c C-c everything is fine, but when I choose a different headline (level 2) via C-1 C-c C-c, only the first of the two tasks will get filed under the chosen headline, the other one disappears.

Is this the intended behaviour? Or am I overlooking an important variable, or lies the problem in my template? If so, what can I do to change my setup, so that every task will get filed under the chosen headline?

I am using the latest org-mode (pulled from git 10 min ago) with emacs 23.1 on Mac OS X 10.6. 

Thanks!

Best,
Christian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Loosing tasks with remember
  2010-04-13 19:13 Loosing tasks with remember Christian Zang
@ 2010-04-14  1:55 ` Bernt Hansen
  2010-04-14  5:18   ` Christian Zang
  0 siblings, 1 reply; 4+ messages in thread
From: Bernt Hansen @ 2010-04-14  1:55 UTC (permalink / raw)
  To: Christian Zang; +Cc: emacs-orgmode

Christian Zang <christian.zang@fh-weihenstephan.de> writes:

> Dear org-enthusiasts,
>
> I have a remember template to file away quick notes and todos that looks like
>
> (setq org-remember-templates
>       '(("Todo" ?t "*** TODO %?\n %i\n" "~/Org/inbox.org" "Inbox")))
>
> When a invoke a remember buffer and write something like
>
> *** TODO Task 1
>
> *** TODO Task 2
>
> and file it away in my inbox.org file using C-c C-c everything is fine, but when I choose a different headline (level 2) via C-1 C-c C-c, only the first of the two tasks will get filed under the chosen headline, the other one disappears.
>
> Is this the intended behaviour? Or am I overlooking an important variable, or lies the problem in my template? If so, what can I do to change my setup, so that every task will get filed under the chosen headline?
>
> I am using the latest org-mode (pulled from git 10 min ago) with emacs 23.1 on Mac OS X 10.6. 
>
> Thanks!

Hi Christian,

Yes this is intended behaviour (sort of).  Remember mode is designed for
one task three per filing operation.  I think it files multiple tasks in
the default save configuration but if you file to a target only the
first task is filed.

To work around this I would either invoke remember multiple times, one
for each task or provide a parent task to hold your multiple TODO
entries like this

* TODO refile task
** TODO Task 1
** TODO Task 2

then you refile the entire tree to the target destination.

HTH,
Bernt

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Loosing tasks with remember
  2010-04-14  1:55 ` Bernt Hansen
@ 2010-04-14  5:18   ` Christian Zang
  2010-04-18  3:33     ` Samuel Wales
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Zang @ 2010-04-14  5:18 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: Christian Zang, emacs-orgmode

Thanks, Bernt,

ok, invoking remember a couple of times in sequence is what I wanted to avoid in the first place, but  refiling a complete tree is a good idea and might work for my purposes.

Cheers,
Christian

Am 14.04.2010 um 03:55 schrieb Bernt Hansen:

> Christian Zang <christian.zang@fh-weihenstephan.de> writes:
> 
>> Dear org-enthusiasts,
>> 
>> I have a remember template to file away quick notes and todos that looks like
>> 
>> (setq org-remember-templates
>>      '(("Todo" ?t "*** TODO %?\n %i\n" "~/Org/inbox.org" "Inbox")))
>> 
>> When a invoke a remember buffer and write something like
>> 
>> *** TODO Task 1
>> 
>> *** TODO Task 2
>> 
>> and file it away in my inbox.org file using C-c C-c everything is fine, but when I choose a different headline (level 2) via C-1 C-c C-c, only the first of the two tasks will get filed under the chosen headline, the other one disappears.
>> 
>> Is this the intended behaviour? Or am I overlooking an important variable, or lies the problem in my template? If so, what can I do to change my setup, so that every task will get filed under the chosen headline?
>> 
>> I am using the latest org-mode (pulled from git 10 min ago) with emacs 23.1 on Mac OS X 10.6. 
>> 
>> Thanks!
> 
> Hi Christian,
> 
> Yes this is intended behaviour (sort of).  Remember mode is designed for
> one task three per filing operation.  I think it files multiple tasks in
> the default save configuration but if you file to a target only the
> first task is filed.
> 
> To work around this I would either invoke remember multiple times, one
> for each task or provide a parent task to hold your multiple TODO
> entries like this
> 
> * TODO refile task
> ** TODO Task 1
> ** TODO Task 2
> 
> then you refile the entire tree to the target destination.
> 
> HTH,
> Bernt
> 
> 
> _______________________________________________
> 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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Re: Loosing tasks with remember
  2010-04-14  5:18   ` Christian Zang
@ 2010-04-18  3:33     ` Samuel Wales
  0 siblings, 0 replies; 4+ messages in thread
From: Samuel Wales @ 2010-04-18  3:33 UTC (permalink / raw)
  To: Christian Zang; +Cc: Bernt Hansen, emacs-orgmode

My alternate remember suggestion from a while back avoids lost data,
for what it's worth.  So if it is implemented as an alternate, you can
try it.

On 2010-04-13, Christian Zang <christian.zang@fh-weihenstephan.de> wrote:
> Thanks, Bernt,
>
> ok, invoking remember a couple of times in sequence is what I wanted to
> avoid in the first place, but  refiling a complete tree is a good idea and
> might work for my purposes.
>
> Cheers,
> Christian
>
> Am 14.04.2010 um 03:55 schrieb Bernt Hansen:
>
>> Christian Zang <christian.zang@fh-weihenstephan.de> writes:
>>
>>> Dear org-enthusiasts,
>>>
>>> I have a remember template to file away quick notes and todos that looks
>>> like
>>>
>>> (setq org-remember-templates
>>>      '(("Todo" ?t "*** TODO %?\n %i\n" "~/Org/inbox.org" "Inbox")))
>>>
>>> When a invoke a remember buffer and write something like
>>>
>>> *** TODO Task 1
>>>
>>> *** TODO Task 2
>>>
>>> and file it away in my inbox.org file using C-c C-c everything is fine,
>>> but when I choose a different headline (level 2) via C-1 C-c C-c, only
>>> the first of the two tasks will get filed under the chosen headline, the
>>> other one disappears.
>>>
>>> Is this the intended behaviour? Or am I overlooking an important
>>> variable, or lies the problem in my template? If so, what can I do to
>>> change my setup, so that every task will get filed under the chosen
>>> headline?
>>>
>>> I am using the latest org-mode (pulled from git 10 min ago) with emacs
>>> 23.1 on Mac OS X 10.6.
>>>
>>> Thanks!
>>
>> Hi Christian,
>>
>> Yes this is intended behaviour (sort of).  Remember mode is designed for
>> one task three per filing operation.  I think it files multiple tasks in
>> the default save configuration but if you file to a target only the
>> first task is filed.
>>
>> To work around this I would either invoke remember multiple times, one
>> for each task or provide a parent task to hold your multiple TODO
>> entries like this
>>
>> * TODO refile task
>> ** TODO Task 1
>> ** TODO Task 2
>>
>> then you refile the entire tree to the target destination.
>>
>> HTH,
>> Bernt
>>
>>
>> _______________________________________________
>> 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
>
>
>
> _______________________________________________
> 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
>


-- 
Q: How many CDC "scientists" does it take to change a lightbulb?
A: "You only think it's dark." [CDC has denied a deadly disease for 25 years]
==========
Retrovirus: http://www.wpinstitute.org/xmrv/index.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-04-18  3:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-04-13 19:13 Loosing tasks with remember Christian Zang
2010-04-14  1:55 ` Bernt Hansen
2010-04-14  5:18   ` Christian Zang
2010-04-18  3:33     ` Samuel Wales

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).