Skip to content

Commit

Permalink
Fix end column for chevrons
Browse files Browse the repository at this point in the history
  • Loading branch information
aquilesg committed Jul 30, 2024
1 parent a9ff23f commit 0b94e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/obsidian/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ local function generate_callout_extmarks_body(
log.debug("Using highlight group: " .. highlight_group .. " (index: " .. highlight_group_index .. ")")
local ext_mark_options = ExtMarkOpts.from_tbl {
end_row = lnum,
end_col = (i + 1 <= #line) and i + 1 or #line,
end_col = i,
conceal = " ",
hl_group = highlight_group,
}
Expand Down

0 comments on commit 0b94e30

Please sign in to comment.