Is there any way to make Vim/gVim highlight the right-margin at the current document? I have just begun to work with Vim for a while and I found it annoyed without the right-margin at column 80.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Vim 7.3 introduced colorcolumn.
|
|||
|
|
There is no simple way to visualize vertical edge of the
So, the general solution is to use the following auto-command.
|
||||
|
I've written a vimscript function in my .vimrc to toggle colorcolumn when I press ,8 (comma followed by 8, where comma is the defined leader for user-defined commands, and eight is my mnemonic key for 'show a margin at the 80th column):
|
||||
|
|
:set cc=81, or relative to textwidth::set cc=+1. – Nefrubyr Sep 22 '10 at 13:57