Re: [ANNOUNCE] tig-0.14
From: Jonas Fonseca <hidden>
Date: 2016-06-15 22:46:07
On Fri, Feb 6, 2009 at 20:15, Jeff King [off-list ref] wrote:
On Thu, Feb 05, 2009 at 09:44:36PM +0100, Jonas Fonseca wrote:quoted
- Blame view: load blame for parent commit. For merge commits the parent is queried. Bound to ',' by default via the existing "parent" action.Thanks for this, btw. I've already used it at least half a dozen times in the past week or so.
Good to hear. I remember you posted a patch for this after 0.11 was released last April.
It looks like you just keep the view on the same line number when moving to the new blame output. In practice, this has very mixed results. Most of the time it does exactly what I want, but if the file changes significantly, you get dumped at a totally unrelated part of the file. I'm not sure if there is a more clever solution, though.
Yes, it is a bit easy to get lost. It should be possible to find the original line number either by making git-blame also honor --show-number for the --incremental output or by using the "porcelain" version: git blame --show-number -L <line>,<line> <rev> <file> -- Jonas Fonseca