feat: do not show git blame on modified lines

This commit is contained in:
Miguel Granero 2026-01-30 16:51:34 +01:00 committed by CJ van den Berg
parent 674c1b0a83
commit 705c9b2727

View file

@ -1508,7 +1508,7 @@ pub const Editor = struct {
if (change.line > row)
break;
if (change.kind == .insert)
if (change.kind == .insert or change.kind == .modify)
if (row >= change.line and row < change.line + change.lines)
return null;