update packages

This commit is contained in:
2021-01-08 19:32:30 +01:00
parent ce8f24d28a
commit f5649dceab
467 changed files with 26642 additions and 22487 deletions

View File

@@ -111,11 +111,25 @@ The cdr of the the cons cell is the function to use."
org-ref-cite-onclick-function 'org-ref-cite-click-helm)
;;* Helm bibtex setup.
(setq bibtex-completion-additional-search-fields '(keywords))
(defcustom org-ref-bibtex-completion-add-keywords-field t
"Whether to add the `keywords' field to bibtex-completion."
:group 'org-ref
:type 'boolean)
(setq bibtex-completion-display-formats
'((t . "${author:36} ${title:*} ${year:4} ${=has-pdf=:1}${=has-note=:1} ${=type=:7} ${keywords:31}")))
;;* Helm bibtex setup.
(when org-ref-bibtex-completion-add-keywords-field
(unless (or (member 'keywords bibtex-completion-additional-search-fields)
(member "keywords" bibtex-completion-additional-search-fields))
;; Both symbol and string values are accepted, but b-c-a-s-f's
;; Custom :type specifies string.
(push "keywords" bibtex-completion-additional-search-fields))
(let ((display-format
(alist-get t bibtex-completion-display-formats)))
(unless (string-match-p "{keywords:"
display-format)
(setf (alist-get t bibtex-completion-display-formats)
(concat display-format " ${keywords:31}")))))
(defun bibtex-completion-copy-candidate (_candidate)
"Copy the selected bibtex entries to the clipboard.