127

Some GUI text editors have a vertical line which serves as line length marker (it helps keeping lines shorter than 80 chars in source code files).

Is is possible to have something similar in vim/gvim? I know about ruler vim option, but it is not very handy to follow it visually on a big screen.

Edit: when googling for "colorcolumn" to learn more, I have found that this question is a duplicate of https://stackoverflow.com/questions/235439/vim-80-column-layout-concerns

vtest
  • 5,250
  • 2
  • 28
  • 28

4 Answers4

197

Just execute this

:set colorcolumn=72

You can also prefix the argument with - or + to put the marker that many columns to the left or right of textwidth, and it accepts a comma-separated list of columns. I think the colorcolumn option is only in Vim 7.3. See

:help colorcolumn
garyjohn
  • 35,330
32

From Damian Conway's "More Instantly Better Vim" talk at OSCON 2013:

highlight ColorColumn ctermbg=magenta
call matchadd('ColorColumn', '\%81v', 100)

This results in the character being highlighted in magenta (the screenshot is in DarkCyan) when the line goes over the 80-character maximum.

vim with highlighting enabled

For gVim: it's best to move those 2 lines to the last part of your .vimrc file to ensure it works.

Isxek
  • 3,925
  • Huh! I just answered your very similar question about this... small world! http://superuser.com/questions/771558/line-length-highlighting-works-in-console-vim-not-gui – lornix Jun 21 '14 at 05:29
  • I put this answer in, then remembered I couldn't do it in gVim, so I asked. ;) – Isxek Jun 21 '14 at 06:18
  • Wow, this is really great! This is the kind of feature I wouldn't even know to look for. I'm using the pattern '\$81v\S' which matches only non-whitespace characters. This means the highlight will not show when the line is exactly 80 characters long (which is something that really bothered me). See this for more info http://stackoverflow.com/questions/12985042/vim-search-for-lines-with-or-without-character-in-specific-column – fvgs May 08 '16 at 08:39
  • 1
    Want to make a couple of corrections to my previous comment. The $ should have been a %. Likewise, I now use the pattern \%81v. since this ensures the 81st column will be highlighted for any character in the 81st column, which is probably what you want. – fvgs Jun 20 '16 at 08:30
2

You could try this:

grep '.\{81\}' file

or

set colorcolumn=80

(or the shorthand equivalent)

set cc=80

or as aforementioned:

match ErrorMsg '\%>80v.\+'
0

Below is a clumsy trick from Hacking Vim: A Cookbook to get the Most out of the Latest Vim Editor by Kim Schultz.

It highlights with ErrorMsg (usually bright red) any lines that go over 80 characters. Works well for me.

function! RemoveWidthLimitWarnigns()
    silent! call matchdelete(4)
endfunction
function! InsertWidthLimitWarnings()
    call RemoveWidthLimitWarnigns()
    call matchadd("ErrorMsg", "\\%>79v.\\+", 10, 4)
endfunction
reevesy
  • 143
mike3996
  • 1,551
  • What am I supposed to do with this snippet? Just stick it into .vimrc? – vtest Feb 24 '11 at 16:02
  • Trying first by just calling :call matchadd("ErrorMsg", "\\%>79v.\\+", 10, 4) suffices. But I wouldn't recommend this anymore since @garyjohn knew something better – mike3996 Feb 24 '11 at 17:40