feature/jump: add {ivy,helm}-xref
This commit is contained in:
parent
222a2955e2
commit
48539dacbc
2 changed files with 16 additions and 0 deletions
|
@ -82,6 +82,18 @@ properties:
|
||||||
;; Packages
|
;; 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
|
(def-package! dumb-jump
|
||||||
:commands (dumb-jump-go dumb-jump-quick-look
|
:commands (dumb-jump-go dumb-jump-quick-look
|
||||||
dumb-jump-back dumb-jump-result-follow)
|
dumb-jump-back dumb-jump-result-follow)
|
||||||
|
|
|
@ -9,3 +9,7 @@
|
||||||
;; ((featurep! :completion helm)
|
;; ((featurep! :completion helm)
|
||||||
;; (package! helm-gtags)))
|
;; (package! helm-gtags)))
|
||||||
|
|
||||||
|
(when (featurep! :completion ivy)
|
||||||
|
(package! ivy-xref))
|
||||||
|
(when (featurep! :completion helm)
|
||||||
|
(package! helm-xref))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue