nvimdev / indentmini.nvim

A minimal and blazing fast indentline plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use `virt_text_win_col` for `nvim_buf_set_extmark`

xsh005 opened this issue · comments

That way indentline doesn't "break" on empty lines

emm nope. some time empty lines no indent line because the decoration provider just provide the lines which in screen visiable. that mean line('w0') line('w$'). this may missing before context. the only solution is use treeistter to check the empty line parent node type.

ah, I see