Compare commits

..

2 Commits

Author SHA1 Message Date
12870a5aef
Adjust default column with in magit repository listing
I need more space.
2025-02-26 10:54:08 +01:00
8998369a4c
Include status column in magit repository listing
To see whether repositories have unstaged changes.

This makes my `check-git-repos` function kind-of obsolete, which is good :)
2025-02-26 10:53:59 +01:00

View File

@ -1471,7 +1471,9 @@ Note that this workaround is incomplete, as explained in this comment."
;; that are not selected, to increase performance.
(setq magit-refresh-status-buffer nil)))
:custom ((magit-repolist-columns '(("Name" 15 magit-repolist-column-ident
:custom ((magit-repolist-columns '(("Name" 20 magit-repolist-column-ident
())
("S" 1 magit-repolist-column-flag
())
("B<U" 3 magit-repolist-column-unpulled-from-upstream
((:right-align t)
@ -1479,7 +1481,7 @@ Note that this workaround is incomplete, as explained in this comment."
("B>U" 3 magit-repolist-column-unpushed-to-upstream
((:right-align t)
(:sort <)))
("Version" 25 magit-repolist-column-version
("Version" 35 magit-repolist-column-version
((:sort magit-repolist-version<)))
("Path" 99 magit-repolist-column-path
()))))