org-roam-bibtex
org-roam-bibtex copied to clipboard
Ebib support
I'd like to be able to create/open an associated org-roam note from an ebib entry.
Hi. This is something I've been wanting to implement since a long time. However, it appears that Ebib's note taking system is heavily melted into Ebib core and it will be not that easy to hook into it. It'll take quite some time. Any help is appreciated.
I’m not an expert on this, but I tried creating a custom function and call it in an ebib index or entry buffer, it seems working fine:
(defun my-ebib-popup-note (key)
(interactive (list (ebib--get-key-at-point)))
(orb-edit-note key))
@xwzliang, yes, well that's really simple. A few more things need to be done to get the indicator support. It seems that we just need to completely shadow several Ebib note-related functions. That's a somewhat brute force approach, but hey.
@myshevchuk Yes it’s more of a hack, but for now it suits my simple needs :)