Function: magit-repolist-status
magit-repolist-status is an interactive and byte-compiled function
defined in magit-repos.el.
Signature
(magit-repolist-status &optional BUTTON)
Documentation
Show the status for the repository at point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-repos.el
;;;; Mode Commands
(defun magit-repolist-status (&optional _button)
"Show the status for the repository at point."
(interactive)
(if-let ((id (tabulated-list-get-id)))
(magit-status-setup-buffer (expand-file-name id))
(user-error "There is no repository at point")))