diff options
Diffstat (limited to '')
-rw-r--r-- | emacs-init.org | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs-init.org b/emacs-init.org index 1ca6195..fc57fa7 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -3474,7 +3474,9 @@ Here's a function to easily copy a doi from the results of =crossref-lookup=. (let ((doi (alist-get 'doi (cdr (biblio--selection-metadata-at-point))))) (kill-new doi) (message "Copied doi %s" doi))) -(define-key biblio-selection-mode-map "d" #'fpi/biblio-get-doi) +(use-package biblio + :bind (:map biblio-selection-mode-map + ("d" . fpi/biblio-get-doi))) #+end_src *** Todo settings - WAITING tasks are waiting on the completion of other tasks |