Fix missing request in lookup module

This commit is contained in:
Henrik Lissner 2020-03-31 15:20:58 -04:00
parent ce57eef471
commit 84d2e67633
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -14,6 +14,9 @@
(when (featurep! :completion helm) (when (featurep! :completion helm)
(package! helm-xref :pin "6b4a8bd91f")) (package! helm-xref :pin "6b4a8bd91f"))
;; For dictionary and online lookup
(package! request :pin "216d570a58")
(when (featurep! +docsets) (when (featurep! +docsets)
(package! dash-docs :pin "111fd9b970") (package! dash-docs :pin "111fd9b970")
(when (featurep! :completion helm) (when (featurep! :completion helm)
@ -26,7 +29,6 @@
(package! osx-dictionary :pin "1b79ff64c7") (package! osx-dictionary :pin "1b79ff64c7")
(package! define-word :pin "d8c76d503b") (package! define-word :pin "d8c76d503b")
(package! powerthesaurus :pin "81a262ec0c") (package! powerthesaurus :pin "81a262ec0c")
(package! request)
(when (featurep! +offline) (when (featurep! +offline)
(package! wordnut :pin "feac531404") (package! wordnut :pin "feac531404")
(package! synosaurus :pin "14d34fc92a")))) (package! synosaurus :pin "14d34fc92a"))))