update of packages

This commit is contained in:
2023-11-04 19:26:41 +01:00
parent e162a12b58
commit 3b54a3236d
726 changed files with 297673 additions and 34585 deletions

View File

@@ -58,7 +58,17 @@
(insert (bibtex-completion-apa-format-reference
(cdr (assoc "=key=" candidate)))))
"Insert formatted citation")
("f" (lambda (_candidate) (ivy-bibtex-fallback ivy-text)) "Fallback options"))
("f" (lambda (_candidate) (ivy-bibtex-fallback ivy-text)) "Fallback options")
("d" (lambda (_)
"Add a bibtex entry from doi and insert cite to it at point."
(funcall-interactively 'doi-utils-add-bibtex-entry-from-doi
(read-string
"DOI: "
;; now set initial input
(doi-utils-maybe-doi-from-region-or-current-kill)))
(org-ref-insert-cite-key
(current-kill 0 t)))
"Insert from a DOI"))
"Alternate actions to do instead of inserting."
:type '(list (repeat (string function string)))
:group 'org-ref)