mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
feature/jump: add {ivy,helm}-xref
This commit is contained in:
@ -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))
|
||||||
|
Reference in New Issue
Block a user