lukas-reineke / indent-blankline.nvim

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

indentation breaks with breakindent set true #829

Closed sdx6 closed 7 months ago

sdx6 commented 7 months ago

Problem

when using these options

vim.opt.wrap = true
vim.opt.breakindent = true
vim.opt.linebreak = true

the indentation lines end up like this image

Steps to reproduce

:set wrap
:set breakindent
:set linebreak

write some stuff with an indent in between and let it wrap line

Expected behavior

i edited the image to what it should be like image

Neovim version (nvim -v)

0.9.5

lukas-reineke commented 7 months ago

Neovim 0.9.5 does not support this. But this is working on nightly, please either use that, or wait for the next Neovim release.

sdx6 commented 7 months ago

Neovim 0.9.5 does not support this. But this is working on nightly, please either use that, or wait for the next Neovim release.

thanks! i upgraded to neovim-git and its working fine now :)