Function: evil-goto-definition-search

evil-goto-definition-search is a byte-compiled function defined in evil-commands.el.

Signature

(evil-goto-definition-search STRING POSITION)

Documentation

Find definition for STRING with evil-search.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil-goto-definition-search (string _position)
  "Find definition for STRING with evil-search."
  (evil-search (format "\\_<%s\\_>" (regexp-quote string)) t t (point-min))
  t)