2

i have added the

(require 'org-notmuch)

to my config and can verify it loads by seeing the notmuch link type in my org mode links.

yet when i try to issue org-store-link in a notmuch buffer i always get the error

user-error: No method for storing a link from this buffer

any clue?

zeltak
  • 1,685
  • 11
  • 25
  • Org doesn't need org-notmuch to display the notmuch link type, it simply displays `[[link][desc]]` as link even it doesn't know how to open/store the type of the link. You can use `M-: (featurep 'org-notmuch)` to know if org-notmuch is loaded. – xuchunyang Dec 03 '16 at 11:15
  • thx. so indeed org-much is loaded yet i still get the error when i try to copy the current link in a notmuch buffer – zeltak Dec 03 '16 at 11:55

1 Answers1

1

I found org-notmuch.el in the contrib/lisp directory of the orgmode git repository. I encountered this error when that git repo was out of sync with my system's org / notmuch. Updating my git checkout resolved the issue.

Mark Janes
  • 11
  • 1