Closed JRavi2 closed 3 years ago
Tried using the plugin in a minimal init.vim file, the issue doesn't seem to persist. I then tried incrementally disabling some plugins, and the root cause seems to be the IndentLine plugin. I guess the plugin is adding vertical lines after each Tab.
Is there any way to avoid this other than removing the Plugin altogether?
Try adding this to your vimrc
:
augroup NoIndentLinesInTerminals
autocmd! TerminalOpen * :IndentLinesToggle
augroup End
This really is an issue with IndentLine. IndentLine should never be enabled for terminal buffers at all, because it makes no sense to have it there.
Yup, that fixed it! Thanks for the help! I agree that IndentLine shouldn't be enabled for terminal buffers, will probably bring this issue up to them. Closing the issue.
In the pane with a lesser number of lines, weird vertical lines are rendered (see screenshots below).
While using vifm directly, this issue is not encountered.