Skip to content

Commit

Permalink
fix syntax highlighting when scrolling left/right
Browse files Browse the repository at this point in the history
  • Loading branch information
halvarsson committed Apr 26, 2024
1 parent c0fc952 commit a59c255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EditorContext/PowerShellEditorContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public override void ParseText(int height, int topRow, int left, int right, stri

if (colError != null)
{
ColumnErrors.TryAdd(new Point(col, row), colError.ErrorMessage);
ColumnErrors.TryAdd(new Point(idxCol, row), colError.ErrorMessage);
}

if (rune == '\t')
Expand Down

0 comments on commit a59c255

Please sign in to comment.