Yggdroot / indentLine

A vim plugin to display the indention levels with thin vertical lines
MIT License
4.13k stars 227 forks source link

Is there a way to display the indentation lines even when the line has nothing written on it? #338

Closed ndavidpsi closed 3 years ago

ndavidpsi commented 3 years ago

IndentLine only displays the lines when the line has at least one blank space in it, is there a way to always display it?

Steps to reproduce using a C++ file: Write the following:

#include <iostream>
int main()
{
    std::cout << "hello\n";

    return 0;
} 

If in line 5 you remove all tabs/spaces leaving no characters it doesn't display the indentation lines.

ndavidpsi commented 3 years ago

Duplicate of #275