org-roam-bibtex icon indicating copy to clipboard operation
org-roam-bibtex copied to clipboard

Ebib support

Open TheJJ opened this issue 3 years ago • 4 comments

I'd like to be able to create/open an associated org-roam note from an ebib entry.

TheJJ avatar Nov 29 '21 17:11 TheJJ

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.

myshevchuk avatar Nov 30 '21 08:11 myshevchuk

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 avatar Dec 23 '21 08:12 xwzliang

@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 avatar Dec 23 '21 21:12 myshevchuk

@myshevchuk Yes it’s more of a hack, but for now it suits my simple needs :)

xwzliang avatar Dec 24 '21 01:12 xwzliang