gregsexton / gitv

gitk for Vim.
938 stars 59 forks source link

Some way to set what to show on screen to always see author and date #94

Closed wolftune closed 8 years ago

wolftune commented 9 years ago

I really want to see author and date on screen, but if I have a commit that matches several remotes, then the listing of the remotes pushes all the lines to be so long that author and date for everything is off-screen. Is there some way to wrap/truncate/handle this so that I can see everything, like I do in gitk?

aisapatino commented 8 years ago

@wolftune If you're still looking for this, you could try let g:Gitv_TruncateCommitSubjects = 1.

If your screen is super narrow, it might be worse because it'll shorten the commit messages while leaving everything else at full length. But on a medium-sized screen it might be helpful.

On a 15" laptop, with an unusually long committer name:

screen shot 2015-12-08 at 3 37 00 pm

Alternatively, there is an option to wrap lines: g:Gitv_WrapLines. But the alignment is totally disrupted and it ends up looking worse imo.

wolftune commented 8 years ago

Thanks that helps! Good enough for me for now.