Skip to content

Commit

Permalink
fix: Incorrect mark lineNr
Browse files Browse the repository at this point in the history
  • Loading branch information
Isrothy committed Aug 26, 2024
1 parent ed0c101 commit 3a23307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/neominimap/map/handlers/mark.lua
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ M.get_annotations = function(bufnr)
local lnum = mark.pos[2]
if config.mark.show_builtins or not is_builtin(mark.mark) then
annotation[#annotation + 1] = {
lnum = lnum + 1,
end_lnum = lnum + 1,
lnum = lnum,
end_lnum = lnum,
priority = config.mark.priority,
id = 1,
icon = string.sub(mark.mark, 2, 3),
Expand Down

0 comments on commit 3a23307

Please sign in to comment.