emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-reverse-note-order
@ 2010-11-19 14:58 Marvin Doyley
  2010-11-28 19:42 ` org-reverse-note-order David Maus
  2010-11-28 20:00 ` org-reverse-note-order Matt Lundin
  0 siblings, 2 replies; 4+ messages in thread
From: Marvin Doyley @ 2010-11-19 14:58 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 227 bytes --]

Hi there,


(setq org-reverse-note-order t) does not seem to work properly with
org-capture-templates

It seems to append my TODO or notes at the end rather at the
beginning. Does anybody know what I am doing wrong ?

thanks
M

[-- Attachment #1.2: Type: text/html, Size: 270 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
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: org-reverse-note-order
  2010-11-19 14:58 org-reverse-note-order Marvin Doyley
@ 2010-11-28 19:42 ` David Maus
  2010-11-28 20:38   ` org-reverse-note-order Marvin Doyley
  2010-11-28 20:00 ` org-reverse-note-order Matt Lundin
  1 sibling, 1 reply; 4+ messages in thread
From: David Maus @ 2010-11-28 19:42 UTC (permalink / raw)
  To: Marvin Doyley; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 893 bytes --]

At Fri, 19 Nov 2010 09:58:11 -0500,
Marvin Doyley wrote:
>
> [1  <multipart/alternative (7bit)>]
>
> (setq org-reverse-note-order t) does not seem to work properly with
> org-capture-templates
>
> It seems to append my TODO or notes at the end rather at the
> beginning. Does anybody know what I am doing wrong ?

Not sure about this variable, but you might try the property :prepend
in the capture template:

C-h v org-capture-templates RET

The rest of the entry is a property list of additional options.  Recognized
properties are:

 :prepend            Normally newly captured information will be appended at
                     the target location (last child, last table line,
                     last list item...).  Setting this property will
                     change that.

HTH,
  -- David
--
OpenPGP... 0x99ADB83B5A4478E6
Jabber.... dmjena@jabber.org
Email..... dmaus@ictsoc.de

[-- Attachment #1.2: Type: application/pgp-signature, Size: 230 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
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: org-reverse-note-order
  2010-11-19 14:58 org-reverse-note-order Marvin Doyley
  2010-11-28 19:42 ` org-reverse-note-order David Maus
@ 2010-11-28 20:00 ` Matt Lundin
  1 sibling, 0 replies; 4+ messages in thread
From: Matt Lundin @ 2010-11-28 20:00 UTC (permalink / raw)
  To: Marvin Doyley; +Cc: emacs-orgmode

Marvin Doyley <marvinpas@gmail.com> writes:

> (setq org-reverse-note-order t) does not seem to work properly with org-capture-templates
>
> It seems to append my TODO or notes at the end rather at the
> beginning. Does anybody know what I am doing wrong ?

AFAICT, org-reverse-note-order is only used by org-remember and
org-refile. To have notes placed at the top of a file/entry by
org-capture, you need to use the :prepend property in the relevant
capture templates. 

,----[ C-h v org-capture-templates ]
| [snip]
| The rest of the entry is a property list of additional options.  Recognized
| properties are:
| 
|  :prepend            Normally newly captured information will be appended at
|                      the target location (last child, last table line,
|                      last list item...).  Setting this property will
|                      change that.
| [snip]
`----

Best,
Matt

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

* Re: org-reverse-note-order
  2010-11-28 19:42 ` org-reverse-note-order David Maus
@ 2010-11-28 20:38   ` Marvin Doyley
  0 siblings, 0 replies; 4+ messages in thread
From: Marvin Doyley @ 2010-11-28 20:38 UTC (permalink / raw)
  To: David Maus; +Cc: emacs-orgmode@gnu.org

Hi David,

I figured this out a week ago. You are correct I needed to include the prepend.

Thanks
M

On Sunday, November 28, 2010, David Maus <dmaus@ictsoc.de> wrote:
> At Fri, 19 Nov 2010 09:58:11 -0500,
> Marvin Doyley wrote:
>>
>> [1  <multipart/alternative (7bit)>]
>>
>> (setq org-reverse-note-order t) does not seem to work properly with
>> org-capture-templates
>>
>> It seems to append my TODO or notes at the end rather at the
>> beginning. Does anybody know what I am doing wrong ?
>
> Not sure about this variable, but you might try the property :prepend
> in the capture template:
>
> C-h v org-capture-templates RET
>
> The rest of the entry is a property list of additional options.  Recognized
> properties are:
>
>  :prepend            Normally newly captured information will be appended at
>                      the target location (last child, last table line,
>                      last list item...).  Setting this property will
>                      change that.
>
> HTH,
>   -- David
> --
> OpenPGP... 0x99ADB83B5A4478E6
> Jabber.... dmjena@jabber.org
> Email..... dmaus@ictsoc.de
>

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

end of thread, other threads:[~2010-11-28 20:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-11-19 14:58 org-reverse-note-order Marvin Doyley
2010-11-28 19:42 ` org-reverse-note-order David Maus
2010-11-28 20:38   ` org-reverse-note-order Marvin Doyley
2010-11-28 20:00 ` org-reverse-note-order Matt Lundin

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).