lukas-reineke / indent-blankline.nvim

Indent guides for Neovim
MIT License
3.98k stars 99 forks source link

Support for drawing over folded lines using `foldtext=''` #901

Closed akinsho closed 3 weeks ago

akinsho commented 3 weeks ago

Problem

In nvim 0.10 (as you probably know) users are now able to set foldtext='' this has the benefits of drawing a fold pretty much like all other editors i.e. full highlighting, as well as extmarks etc. I've noticed using this new mode though that indent line no longer draws it's indicator over the folds probably as it's a different implementation. I wanted to ask if it was possible to tweak it's implementation to accommodate this or if it's too different to support

Screenshot 2024-06-25 at 11 57 21

Expected behavior

I'd hope that it could just draw the indentline over the space like it used to when the draw over foldtext option existed

lukas-reineke commented 3 weeks ago

Released a new version that should support this now.

akinsho commented 3 weeks ago

Awesome thanks 🙏🏾