Skip to content

Commit

Permalink
fix(wrapped-compact): fix Invalid 'col': out of range (#310)
Browse files Browse the repository at this point in the history
ref to #303
  • Loading branch information
Parsifa1 authored Dec 30, 2024
1 parent 1e99f4f commit c379719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/notify/render/wrapped-compact.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ return function(bufnr, notif, highlights, config)
if notif.duplicates then
prefix = string.format("%s x%d", prefix, #notif.duplicates)
end
prefix_length = #prefix + 2
prefix_length = #prefix
table.insert(message, 1, prefix)
end

Expand Down

0 comments on commit c379719

Please sign in to comment.