Skip to content

Commit

Permalink
chore: make stylua happy
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Nov 27, 2023
1 parent ab75f8c commit 7115898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/neorg/modules/core/concealer/module.lua
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ module.public = {
table.insert(t, superscript_digits[d + 1])
end
local superscripted_title = table.concat(t)
local row_start_0b, col_start_0b, row_end_0bin, col_end_0bex = link_title_node:range()
local row_start_0b, col_start_0b, _, _ = link_title_node:range()
local highlight = config.title_highlight
set_mark(bufid, row_start_0b, col_start_0b, superscripted_title, highlight)
end
Expand Down Expand Up @@ -567,7 +567,7 @@ module.public = {
return
end

local row_start_0b, col_start_0b, row_end_0bin, col_end_0bex = node:range()
local row_start_0b, col_start_0b, _, col_end_0bex = node:range()
local render_col_start_0b = config.left == "here" and col_start_0b or 0
local opt_textwidth = vim.bo[bufid].textwidth
local render_col_end_0bex = config.right == "textwidth" and (opt_textwidth > 0 and opt_textwidth or 79)
Expand Down

0 comments on commit 7115898

Please sign in to comment.