0

When I click on a citation like this:

cite:Thompson_CalculusMadeEasy2014

I get to choose from a list of citation actions which include adding notes.

When I follow the link below, it only brings up a buffer that shows the relevant bibtex entry.

[cite:@Thompson_CalculusMadeEasy2014]

Is there any way I could choose to access or notes through the link above?

Sati
  • 775
  • 6
  • 21
  • What function are you using to open notes? – jagrg Dec 11 '22 at 12:45
  • I use `helm-bibtex` to search for the relevant reference and press `` to open notes. Not sure what function `citation actions` calls under the hood. – Sati Dec 12 '22 at 03:04

1 Answers1

2

You have to specify the notes function for the follow property.

(org-cite-register-processor 'my-org-cite-follow
  :follow (lambda (datum _arg)
            (bibtex-completion-edit-notes
             (list (org-element-property :key datum)))))

(setq org-cite-follow-processor 'my-org-cite-follow)
jagrg
  • 3,824
  • 4
  • 19