Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like (G)Vim to draw pipe symbol | on each 4th space of indentation to show something like vertical indentation line.

I found this plugin: http://vim.sourceforge.net/scripts/script.php?script_id=628, but it works only for Tabs, and I'm using spaces instead of the Tabs.

My .vimrc contains:

set ts=4
set sw=4
set expandtab 
set softtabstop=4 

Thanks for help

share|improve this question

2 Answers

up vote 1 down vote accepted

You could simply highlight every fourth space. It's simpler and more effective. Please, take a look at my answer to the question about indentation guides.

share|improve this answer
1  
Great! It is what i'm looking for Thank you – Milan Leszkow Feb 2 '10 at 11:43

you can try my plugin: https://github.com/Yggdroot/indentLine, it completely satisfy your requirement. It displays a thin vertical line not a "fat vertical line" like http://www.vim.org/scripts/script.php?script_id=3361.

share|improve this answer
3  
Thanks for posting your answer! Please be sure to read the FAQ on Self-Promotion carefully. Also note that it is required that you post a disclaimer every time you link to your own site/product. – Andrew Barber Dec 6 '12 at 2:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.