Skip to content

Commit

Permalink
fix: skipcol offset
Browse files Browse the repository at this point in the history
  • Loading branch information
willothy committed Dec 29, 2023
1 parent 1de67b5 commit ca9a0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/precognition/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ local function on_cursor_hold()

last_col = col + 1
else
skip_col = skip_col + (last_col - col)
skip_col = skip_col + (last_col - col) + 1
end
table.insert(virt_line, { hint, "Comment" })
end
Expand Down

0 comments on commit ca9a0ef

Please sign in to comment.