Function: evil-goto-definition-semantic

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

Signature

(evil-goto-definition-semantic STRING POSITION)

Documentation

Find definition for POSITION with semantic.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil-goto-definition-semantic (_string position)
  "Find definition for POSITION with semantic."
  (and (fboundp 'semantic-ia-fast-jump)
       (ignore-errors (semantic-ia-fast-jump position))))