Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I search for "nurple" in a file. I found it, great. But now, every occurrence of "nurple" is rendered in sick black on yellow. Forever.

Forever, that is, until I search for something I know won't be found, such as "asdhfalsdflajdflakjdf" simply so it clears the previous search highlighting.

Can't I just hit a magic key to kill the highlights when I'm done searching?

share|improve this question

9 Answers

up vote 40 down vote accepted

Just put this in your .vimrc

" <Ctrl-l> redraws the screen and removes any search highlighting.
nnoremap <silent> <C-l> :nohl<CR><C-l>
share|improve this answer
2  
Oooh, that's a goodie. I've been using /@@<ENTER> which works as long as there's no @@ in my files. I must modify my vimrc NOW! – paxdiablo Sep 19 '08 at 3:24
This is great, cured a lot of my headaches! I think ,it's better to use the full command in vimrc (:nohlsearch) to avoid conflicts in future. – Amit Feb 18 '09 at 20:46
   
I dont think ctrl-l works..just tried. – nanshi Apr 12 at 21:22

:noh (short for nohighlight) will do the trick.

share|improve this answer
8  
Fear not, the highlighting returns with the next search. The command should probably be named clearhighlight. – steamer25 Sep 9 '11 at 15:35
1  
Four years late, but thanks. This is good stuff. – kmarks2 Jul 11 '12 at 19:44

/lkjasdf has always been faster than :noh for me

share|improve this answer
4  
Doing this in front of someone who knew Vim better than I did is how I learned about :nohls. – Pi. Sep 19 '08 at 3:32

Then I prefer this:

map  <F12> :set hls!<CR>
imap <F12> <ESC>:set hls!<CR>a
vmap <F12> <ESC>:set hls!<CR>gv

And why? Because it toggles the switch: if highlight is on, then pressing turns it off. And vica cersa. HTH.

share|improve this answer
This can also be accomplished with the "invhlsearch" setting. – Max Cantor Sep 19 '08 at 13:22

Append the following line to the end of your .vimrc to prevent highlighting altogether:

set nohlsearch
share|improve this answer
    		*:noh* *:nohlsearch*
:noh[lsearch]   	Stop the highlighting for the 'hlsearch' option.  It
    		is automatically turned back on when using a search
    		command, or setting the 'hlsearch' option.
    		This command doesn't work in an autocommand, because
    		the highlighting state is saved and restored when
    		executing autocommands |autocmd-searchpat|.
    		Same thing for when invoking a user function.

Found it just under the :help #

Which i keep hitting all the time which highlights all the words on the current page like the current one :)

share|improve this answer

There is hlsearch and nohlsearch. :help hlsearch will provide more information. If you want to bind F12 to toggle it on/off you can use this:

map     <F12>   :nohlsearch<CR>
imap    <F12>   <ESC>:nohlsearch<CR>i
vmap    <F12>   <ESC>:nohlsearch<CR>gv
share|improve this answer

I search so often that I've found it useful to map the underscore key to remove the search highlight:

nnoremap <silent> _ :nohl<CR>
share|improve this answer

I have this in my .vimrc:

nnoremap ; :set invhlsearch<CR>

This way, ; will toggle search highlighting. Normally, the ; key repeats the latest t/T/f/F command, but I never really used that functionality. I find this setting much more useful, because I can change search highlighting on and off very quickly, and easily get a sense of where my search results are, at a glance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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