Fix script for recording highlight gold standard

The end row was wrongly recorded with the value of the end column.
This commit is contained in:
HiPhish 2024-08-12 23:29:50 +02:00
parent 01a9381850
commit 98513481e0

View file

@ -29,7 +29,7 @@ local function reduce_extmark(extmark)
return {
start_row = extmark[2],
start_col = extmark[3],
end_row = extmark[4].end_col,
end_row = extmark[4].end_row,
end_col = extmark[4].end_col,
hl_group = extmark[4].hl_group,
}