ORB support for citar new API? #253
Unanswered
LorenRiccie
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Hi @LorenRiccie, we do not need to patch it. There have been changes on the Citar part, but ORB is fully compatible with them. You just need to configure Citar as described here: emacs-citar/citar#646 (comment) Note that you also need to install and load Citar helper package for Org-roam: https://github.com/emacs-citar/citar-org-roam Your config may look as follows (I tested it and it works): (require 'citar-org-roam)
(citar-register-notes-source
'orb-citar-source (list :name "Org-Roam Notes"
:category 'org-roam-node
:items #'citar-org-roam--get-candidates
:hasitems #'citar-org-roam-has-notes
:open #'citar-org-roam-open-note
:create #'orb-citar-edit-note
:annotate #'citar-org-roam--annotate))
(setq citar-notes-source 'orb-citar-source) I will later update the ORB Readme file to reflect these innovations. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
See citar issue #675.
what could we patch to support it?
Beta Was this translation helpful? Give feedback.
All reactions