mirror of
https://github.com/folke/snacks.nvim
synced 2025-08-04 18:58:12 +00:00
fix(indent): use space instead of full blank for indent offset. See #313
This commit is contained in:
parent
188b043705
commit
58081bcecb
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ local function get_extmark(indent, state)
|
|||
if i >= offset then
|
||||
text[#text + 1] = { config.indent.char, get_hl(i + hidden, config.indent.hl) }
|
||||
else
|
||||
text[#text + 1] = { blank, get_hl(i + hidden, config.blank.hl) }
|
||||
text[#text + 1] = { space, get_hl(i + hidden, config.blank.hl) }
|
||||
end
|
||||
text[#text + 1] = { blank, get_hl(i + hidden, config.blank.hl) }
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue