I know there are solutions to making emacs show the 80 line column, but I don't want that sort of visual disturbance. I'd just like to make it highlight a line if it's over 80 characters.
|
|
Another easy option is to run Every line with 81 characters or more will be highlighted with the color of your choice. |
|||||||||||
|
|
See |
|||||||
|
|
Try highlight-80+.el You can acquire it from: http://nschum.de/src/emacs/highlight-80+/ just:
and enable it: M-x highlight-80+-mode |
|||
|
|
Here's my config from Emacs Dev Kit:
Basically you need just the last bit, but I find the other settings quite useful (I hate tabs and trailing whitespaces). |
|||
|
|
|
Here is some example code which will highlight text that lies beyond column 80 with the current 'warning' face, and a line to enable it for C++ mode.
It doesn't highlight the whole line, but I find it is reasonably helpful. |
|||
|