Variable: evil-goto-definition-functions

evil-goto-definition-functions is a customizable variable defined in evil-vars.el.

Value

(evil-goto-definition-imenu
 evil-goto-definition-semantic
 evil-goto-definition-xref
 evil-goto-definition-search)

Documentation

List of functions run until success by evil-goto-definition.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-goto-definition-functions
  '(evil-goto-definition-imenu
    evil-goto-definition-semantic
    evil-goto-definition-xref
    evil-goto-definition-search)
  "List of functions run until success by `evil-goto-definition'."
  :type 'hook
  :group 'evil)