lukas-reineke / indent-blankline.nvim

Indent guides for Neovim
MIT License
4.16k stars 102 forks source link

Space between lines #785

Closed ShelpAm closed 10 months ago

ShelpAm commented 10 months ago

When I use wsl with a line-height greater than 1.3, it looks wierd like this:

Actual behavior:

image

Expected behavior:

image but with a greater line-height.

My configuration:

require("ibl").setup({
  indent = { char = '▏' },
})
lukas-reineke commented 10 months ago

That's a limitation of your terminal. Some terminals like Kitty can render box drawing characters over the full cell, even with line height over 1. But if your terminal can't, it will look like this. There is nothing I can do here to fix that.

ShelpAm commented 10 months ago

That's a limitation of your terminal. Some terminals like Kitty can render box drawing characters over the full cell, even with line height over 1. But if your terminal can't, it will look like this. There is nothing I can do here to fix that.

Thank you for your detailed explanation!