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
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
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