Merge pull request #2907 from brianmcgillion/helm-bibtex

Bump helm-bibtex and ivy-bibtex
This commit is contained in:
Henrik Lissner 2020-04-16 14:09:26 -04:00 committed by GitHub
commit 002b86b559
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,12 @@
;;; tools/biblio/config.el -*- lexical-binding: t; -*-
(use-package! bibtex-completion
:defer t
:config
(setq bibtex-completion-additional-search-fields '(keywords)
bibtex-completion-pdf-field "file"));; This tell bibtex-completion to look at the File field of the bibtex to figure out which pdf to open
(use-package! ivy-bibtex
:when (featurep! :completion ivy)
:defer t

View file

@ -1,7 +1,8 @@
;; -*- no-byte-compile: t; -*-
;;; tools/biblio/packages.el
(package! bibtex-completion :pin "b14b628261")
(when (featurep! :completion ivy)
(package! ivy-bibtex :pin "3cff6bd702"))
(package! ivy-bibtex :pin "b14b628261"))
(when (featurep! :completion helm)
(package! helm-bibtex :pin "3cff6bd702"))
(package! helm-bibtex :pin "b14b628261"))