> Hello, I'm pretty new to VIM and I actually have no clue what > I did. If I open any file (or even create a new one) VIM > hightlights all text green. I'd rather prefer to get my syntax > highlighting back, especially for my c files which I mainly > edit.
Sounds like you may have search-highlighting enabled and then searched for something like "." that matches every character. To temporarily disable search-highlighting use :noh or search for something else: /xyzzy To disable it for your entire session, use :set nohls If you don't like it at all, you can disable it in your vimrc...either remove a line that reads set hls or add one that reads set nohls (or "hlsearch"/"nohlsearch"). Or if it's just the green you dislike, you can change it or your color-scheme. -tim --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
