Re: what do do when multiple functions store a link

2021-01-02 Thread John Kitchin
Here is a very grungy solution: (defun scimax-store-link-advice (orig-fun &rest args) (cl-letf (((symbol-function 'symbol-name) (lambda (_) ""))) (apply orig-fun args))) (advice-add 'org-store-link :around 'scimax-store-link-advice) It works by temporarily redef

Re: what do do when multiple functions store a link

2021-01-02 Thread Daniele Nicolodi
On 02/01/2021 14:49, John Kitchin wrote: > Recently I have had an issue where multiple functions may store a link, > e.g. to a bibtex entry.  >   > In this case, org-mode seems to prompt me to ask which function to store > the link with, with an initial input of the first function, which masks > al

what do do when multiple functions store a link

2021-01-02 Thread John Kitchin
Recently I have had an issue where multiple functions may store a link, e.g. to a bibtex entry. In this case, org-mode seems to prompt me to ask which function to store the link with, with an initial input of the first function, which masks all the options that are available. This happens inside o