emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Tim Visher <tim.visher@gmail.com>
To: Emacs Org Mode mailing list <emacs-orgmode@gnu.org>
Subject: org-attach-attach in an org-capture template?
Date: Thu, 29 Apr 2021 10:08:06 -0400	[thread overview]
Message-ID: <CAHa53uxGFMsyXdEoDg=G3vF0ayE_eES_uPCZ0o=rVU1dRXACaw@mail.gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 2573 bytes --]

Hi Everyone,

*TL;DR:* I've recently started using org-capture and I'd like to run
org-attach-attach during the expansion of a few of my templates. Doing so
from a template function seems not to work (meaning a function in a
template string called with %(…)). What's the best way to go about this?
------------------------------

I've recently started to explore org-capture and it's pretty great. I'm
interested in having one of my templates search for a file somewhere and,
if it finds one, add it to the current template as an attachment.

My initial test template looks something like:

(defun attach-file
    ()
  (org-attach-attach (expand-file-name "a file")
                     nil
                     'cp))

(setq org-capture-templates
      '("T" "TEST" entry
        (file+headline "~/x.org" "Inbox")
        "* TODO Foo%(attach-file)
  %U"))

The idea being that attach-file would call org-attach-attach if it could
find a file and always expand to nothing.

Upon testing that I see the following (org 9.4.5-g287af2, emacs 27.2 (build
1, x86_64-apple-darwin18.7.0)):

** TODO Foo%![Error: (error bug: org-id-get expects a file-visiting buffer)]
   :PROPERTIES:
   :ID:       05837793-5A4F-42FC-AB50-5165FA7ECC4B
   :END:

   [2021-04-29 Thu 09:52]

If I then call org-attach manually on the resulting entry I can attach a
file fine to it.

I'm aware that I can make the template an elisp function and do the work
all internally. That's probably what I'll start doing presently. But it's a
little annoying that I then need to reimplement org-capture's built-in
template expansion in some way (like %U for the current inactive timestamp).

I also believe I could do this with one of the org-capture hooks but
examining them I didn't see the obvious right one to add my function to. I
would think it would be the org-capture-prepare-finalize-hook and I may
just give that a try. I further assume then that I'd need to to apply the
advice here
<https://www.reddit.com/r/emacs/comments/9n3vxn/in_org_mode_how_can_i_make_a_postcapture_hook_run/>
and
check for what template I'm in with (plist-get org-capture-plist :key) or
similar.

So my question is whether there's anything I can do to get org-attach-attach to
recognize the file it's in. I'm assuming that when it's expanding it's in a
temporary buffer of some kind which is why it's failing.

All thoughts and advice are most welcome. Thanks in advance! :)

--

In Christ,

Timmy V.

https://blog.twonegatives.com
http://five.sentenc.es

[-- Attachment #2: Type: text/html, Size: 5283 bytes --]

             reply	other threads:[~2021-04-29 14:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-29 14:08 Tim Visher [this message]
2021-04-30 13:12 ` org-attach-attach in an org-capture template? Ihor Radchenko

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='CAHa53uxGFMsyXdEoDg=G3vF0ayE_eES_uPCZ0o=rVU1dRXACaw@mail.gmail.com' \
    --to=tim.visher@gmail.com \
    --cc=emacs-orgmode@gnu.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).