Skip to content

Commit

Permalink
fix: extmarks missing from final line (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
jradam committed May 26, 2024
1 parent 7590af1 commit 96458b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/git-conflict.lua
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ local function highlight_conflicts(positions, lines)

local curr_label_id = draw_section_label(bufnr, CURRENT_LABEL_HL, current_label, current_start)
local curr_id = hl_range(bufnr, CURRENT_HL, current_start, current_end + 1)
local inc_id = hl_range(bufnr, INCOMING_HL, incoming_start, incoming_end)
local inc_id = hl_range(bufnr, INCOMING_HL, incoming_start, incoming_end + 1)
local inc_label_id = draw_section_label(bufnr, INCOMING_LABEL_HL, incoming_label, incoming_end)

position.marks = {
Expand Down

0 comments on commit 96458b8

Please sign in to comment.