up vote 7 down vote favorite
5
share [g+] share [fb]

I would like vim to color "long" lines for me. Using 80 columns as an example, I would like to highlight lines that exceed that length. Here is roughly what I think the .vimrc file should contain, although it (1) doesn't work, and (2) uses Perl's regex syntax to illustrate my point, because I don't know Vim's well enough:

...
highlight Excess ctermbg=0
au Syntax * syn match Excess /.{80,}$/
...

This (in my mind at least) should mark lines that exceed 80 columns. What I would ideally like is the ability to color only the part of the line that exceeds 80 columns, so if a line is 85 columns, then the 81st through the 85th columns would be highlighted.

I'm sure Vim can do this, just not with me at the helm.

link|improve this question

1  
+1. Great question! Now, I have no clue about the answer, but I'll stay tuned. – PEZ Dec 27 '08 at 16:59
feedback

2 Answers

up vote 7 down vote accepted

I have this in my vimrc.
I found it here: http://stackoverflow.com/questions/235439/vim-80-column-layout-concerns

highlight OverLength ctermbg=darkred ctermfg=white guibg=#FFD9D9
match OverLength /\%81v.*/

You might want to adjust the colors to your preferences.

link|improve this answer
1  
+1.Now, if someone could explain why that works that would help me a lot because I don't get it. – PEZ Dec 27 '08 at 20:49
3  
This only works for the first file you open in any given buffer – Brandon Thomson Jun 21 '09 at 15:49
feedback

I use the following method:

hi gitError ctermbg=Red
match gitError /^.*\s$/
2match gitError /^.\{120\}.*$/

(These match some git pre-commit hooks)

The second line should be of interrest to you.

link|improve this answer
Thank you. This (/^.\{120\}.*$/) highlights the whole line - any idea about just highlighting from characters 121 onwards? – Paul Beckingham Dec 27 '08 at 16:58
Sorry, no idea. The problem is that it may not be doable with regexps. You know, it would propably require a stack machine. – terminus Dec 27 '08 at 17:07
You can highlight only the 80 first chars. I know, not exactly what you want, but you'll see the excess quite clearly anyway. – PEZ Dec 27 '08 at 17:28
feedback

Your Answer

 
or
required, but never shown

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