junk food for the brain …
Stop Vim from Highlighting Search Results
You can search to words in vim using the ‘/’ key when you’re in command mode. Unfortunately, new admins in their desperation to find a word may inadvertently specify a term too generic.
Vim provides search highlighting, but sometimes, the results are just plain fugly. For example, when searching for the word module in a httpd.conf file, this is what could happen:
Yeah, not really the the most visually pleasing. To temporarily turn of highlighting, just type
:nohlsearch
in vim command mode.
The next time you search for something, or press the ‘n’ key, it will be automatically turned back on.

July 15, 2009 - 9:59 pm
You can also use the much shorter version:
:nohJuly 16, 2009 - 9:28 am
Thanks for the tip Stu.