preservim / vim-indent-guides

A Vim plugin for visually displaying indent levels in code
MIT License
2.62k stars 162 forks source link

Use foreground char separator instead of a background color #83

Closed nowox closed 9 years ago

nowox commented 9 years ago

I will consider this plugin remarkable if instead of a colored background blank char we use a colored |.

I think this might be possible with the conceal feature.

void main() {
   for(;;) {
   |   if(foo) {
   |   |   bar = true;
   |   }
   }
}

EDIT Actually I just found this plugin: https://github.com/Yggdroot/indentLine which does exactly what I was thinking

nathanaelkane commented 9 years ago

I'd love to have this functionality, but it's not a priority right now. The indentLine plugin is definitely the way to go if you want this :+1:

Closing as duplicate of #46.