Add Author Column to Recent Commits #1637
Replies: 4 comments
-
The place to embed that information is over here: neogit/lua/neogit/lib/git/log.lua Line 273 in 3d63d76 Or do some custom parsing for the commit in Line 193 in 3d63d76 Not sure what the best approach on that is. I'm guessing we'd want to set recent commit formatting based on a config flag. |
Beta Was this translation helpful? Give feedback.
-
I have it working on this branch. Neogit has to be setup with the option require("neogit").setup({
status = {
recent_commit_include_author_info = true
}
}) |
Beta Was this translation helpful? Give feedback.
-
@treatybreaker you're an absolute legend. If you PR this i'll be more than happy to review and approve. |
Beta Was this translation helpful? Give feedback.
-
Yep, definitely going to PR. Writing some tests for it currently 😎. |
Beta Was this translation helpful? Give feedback.
-
Is your feature request related to a problem? Please describe.
I find myself frequently wanting to see the author when viewing
Recent commits
, but most of the times I'm too lazy to press enter on the commit to inspect it's details.Describe the solution you'd like
I would like the author of the commit to also be included in
Recent commits
as a separate column so I can quickly see who authored the commit.Describe alternatives you've considered
Start exercising, change my diet, work on my relationships, all in a futile effort to overcome my laziness.
Additional context

Beta Was this translation helpful? Give feedback.
All reactions