Hello vimers !
As you see on the picture, there is a vertical line to connect between opening tag and closing tag(html) or on function data.
Is there a plugin in vim connect between tag or block program, like in modern text editor ???
Check the built-in help for list
and listchars
This should do the trick:
:set listchars=tab:\|\
:set list
(notice, that there's a space after the last backslash)