feature/jump: add {ivy,helm}-xref

This commit is contained in:
Henrik Lissner 2017-12-26 19:26:42 -05:00
parent 222a2955e2
commit 48539dacbc
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 16 additions and 0 deletions

View file

@ -82,6 +82,18 @@ properties:
;; Packages
;;
(def-package! ivy-xref
:when (featurep! :completion ivy)
:after xref
:config (setq xref-show-xrefs-function #'ivy-xref-show-xrefs))
(def-package! helm-xref
:when (featurep! :completion helm)
:after xref
:config (setq xref-show-xrefs-function #'helm-xref-show-xrefs))
(def-package! dumb-jump
:commands (dumb-jump-go dumb-jump-quick-look
dumb-jump-back dumb-jump-result-follow)

View file

@ -9,3 +9,7 @@
;; ((featurep! :completion helm)
;; (package! helm-gtags)))
(when (featurep! :completion ivy)
(package! ivy-xref))
(when (featurep! :completion helm)
(package! helm-xref))