Skip to content

Commit

Permalink
[spacemacs-misc] Ensure that dumb-jump xref backend is actually last
Browse files Browse the repository at this point in the history
The comment suggests the intention of the code is to add it to the
end, but it wasn't doing so (and examining the xref-backend-functions
of a running Spacemacs shows that dumb-jump-xref-activate is first).
  • Loading branch information
bcc32 committed Feb 11, 2025
1 parent d8e28b6 commit 77d37e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layers/+spacemacs/spacemacs-misc/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

;; Enable xref-backend of dumb-jump. It's chosen only when no better
;; options is available
(add-hook 'xref-backend-functions #'dumb-jump-xref-activate)))
(add-hook 'xref-backend-functions #'dumb-jump-xref-activate 90)))

(defun spacemacs-misc/init-request ()
(setq request-storage-directory
Expand Down

0 comments on commit 77d37e8

Please sign in to comment.