emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Juan <Pechiar@computer.org>
To: Michael Gilbert <mcg@gilbert.org>
Cc: emacs-orgmode Mailinglist <emacs-orgmode@gnu.org>
Subject: Re: can you require a certain template with lognotedone?
Date: Tue, 13 Jul 2010 01:17:33 -0300	[thread overview]
Message-ID: <20100713041733.GG5569@soloJazz.com> (raw)
In-Reply-To: <16C874DD-C7B5-4B8B-9C2B-D54D64640FBE@gilbert.org>

Michael,

Have a look at org-log-note-headings customization variable,
together with org-log-done and friends.

All these are quite static text you can configure, so probably then
do not accomplish what you ask for.


Maybe a good-enough solution is to store your template as a register
and then insert it in the note-taking buffer.

Throw something like this in your .emacs:

(set-register ?n "This is\nmy template\n")

so that C-x r i n   will insert that text.

///----------------------------------------///
If you're feeling strange and are willing to change the code here:

in file org.el, line ~10880 (current git pull):

  ;; It is now done, and it was not done before
        (org-add-planning-info 'closed (org-current-time))
              (if (and (not dolog) (eq 'note org-log-done))
                    (org-add-log-setup 'done state this
                    'findpos 'note)))

after the 'note, add your template as a string (or a lisp function
that provides a string (template) depending on the context/setup):

... 'findpos 'note "this is\\nmy template")))

The string is an optional parameter for org-add-log-setup which will
be copied into the Org-Note buffer.


Good luck!
.j.


On Mon, Jul 12, 2010 at 06:05:43PM -0700, Michael Gilbert wrote:
> I require a note when certain TODOs are changed to DONE. These are
> almost always some sort of structured logging. Is there a way to
> call org-capture and/or require a certain template for that note?
> That would be a very powerful workflow for me.

  reply	other threads:[~2010-07-13  4:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-13  1:05 can you require a certain template with lognotedone? Michael Gilbert
2010-07-13  4:17 ` Juan [this message]
2010-07-13 12:18 ` Matt Lundin
2010-07-13 16:58   ` Michael Gilbert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100713041733.GG5569@soloJazz.com \
    --to=pechiar@computer.org \
    --cc=emacs-orgmode@gnu.org \
    --cc=mcg@gilbert.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).