up vote 1 down vote favorite
share [g+] share [fb]

I need to highlight anything beyond column 72 with a different background color. What's the best method? Something similar to a visible line margin that some editors do is also good. Is it possible?

Some background:

The syntax is a Pascal like, and works correctly.

Only the Background needs to change. The foreground is already highlighted as it should be. There are cases where a String will be more than 80 characters and will pass the 72 column limit, and should be highlighted as a string.

The coding standards are similar to COBOL and all characters beyond column 72 should by comment lines. These column 72 comments do start with the comment start character, and are highlighted properly.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 3 down vote accepted

You can

:match DiffAdd '\%>72v.*'

which will highlight the characters you don't want.

(adapted from here).

link|improve this answer
This is great, but only works if the line contains characters beyond column 72. Is it possible to have it highlight even when the line contains less characters? – Ayman Oct 6 '09 at 8:59
1  
not that I've come across. – Peter Oct 6 '09 at 9:00
feedback

Your Answer

 
or
required, but never shown

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