Function: magit-status-here

magit-status-here is an autoloaded, interactive and byte-compiled function defined in magit-status.el.

Signature

(magit-status-here)

Documentation

Like magit-status but with non-nil magit-status-goto-file-position.

Before doing so, save all file-visiting buffers belonging to the current repository without prompting.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-status.el
;;;###autoload
(defun magit-status-here ()
  "Like `magit-status' but with non-nil `magit-status-goto-file-position'.
Before doing so, save all file-visiting buffers belonging to the current
repository without prompting."
  (interactive)
  (let ((magit-inhibit-refresh t))
    (magit-save-repository-buffers t))
  (let ((magit-status-goto-file-position t))
    (call-interactively #'magit-status)))