Function: magit-diff--goto-file-position

magit-diff--goto-file-position is a byte-compiled function defined in magit-diff.el.

Signature

(magit-diff--goto-file-position FILE LINE COLUMN &optional PARENT)

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-diff.el
(defun magit-diff--goto-file-position (file line column &optional parent)
  (when-let ((pos (magit-diff--locate-file-position file line column parent)))
    (goto-char (car pos))
    (magit-section-reveal (magit-current-section))))