Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After you do a search in vim you get all the occurrences highlighted, how can you disable that? I now do another search for something gibberish that can't be found.

Is there a way to just temporarily disable the highlight and then re-enable it when needed again?

share|improve this question
32  
I think the "nnoremap <esc> :noh<return><esc>" solution is a more complete answer to the question -- by putting that in your .vimrc you can then just press <esc> after you search to clear the highlighting from the previous search (but not disable highlighting for good). – Stewart Johnson Sep 1 '10 at 22:53
2  
:set invhlsearch will disable the highlighting if its already highlighted and enable it if it isn't. You can map it to say Shift-H. – puffadder Jan 3 '11 at 9:47
The accepted answer is not the best. – CravingSpirit May 4 at 14:21

10 Answers

up vote 144 down vote accepted

to disable

set nohlsearch

or to switch

set hlsearch!

nnoremap <F3> :set hlsearch!<CR>
share|improve this answer
thanks ... this was what i was looking for – solomongaby Mar 18 '09 at 9:58
8  
or just use type :nohl in cmd mode – Mikeage Mar 23 '09 at 14:27
105  
:noh is enough :) – Leonardo Constantino Apr 22 '09 at 5:20
4  
I know :) I like explicit things. – Mykola Golubyev Apr 22 '09 at 6:41
5  
By doing set nohlsearch the highlighting returns when vim is restarted. :noh works better. – Dharmit Shah Apr 17 '11 at 4:42
show 3 more comments

From the VIM Documentation

To clear the last used search pattern:

    :let @/ = ""

This will not set the pattern to an empty string, because that would match everywhere. The pattern is really cleared, like when starting Vim.

share|improve this answer
3  
This doesn't disable the search, it clears the pattern. – Shaun Bouckaert Mar 18 '09 at 9:45
28  
...which would be a better solution to his problem as I understand it. – Shaun Bouckaert Mar 18 '09 at 9:46
4  
Voted Up. This might not answer his question, but I often find myself wanting to do exactly what your answer does. Thanks – skinp Mar 18 '09 at 13:14
3  
This is what I was looking for! I voted it up, the question is slightly vague. This led me to think this is what he wanted: "I now do another search for something gibberish that can't be found". Because that is what I was doing to clear the search, but not disable it so the next search would highlight again. – claytron Aug 31 '10 at 18:42
13  
This is what I thought the question was about... here is a command I made to quicken clearing of the search string (and therefore removing all highlights): :command C let @/="" Using this allows you to type :C to clear the search string... very quick and doesn't affect future searching or highlighting. – Jason Mar 9 '11 at 13:31
show 13 more comments

You can also do

:noh

or :nohlsearch to temporarily disable search highlighting until the next search.

share|improve this answer
3  
thanks, this was helpful ... any command for returning the highlight ? – solomongaby Mar 19 '09 at 13:47
9  
:nohs just shuts off the current highlighting. If you have :set hlsearch then it will continue to highlight your searches. – greyfade Mar 19 '09 at 15:55
2  
I think this is what the OP was searching for (although Shaun's answer works too). I'm upvoting this for being shorter. I know he accepted the nohls answer, but setting it will disable all search highlighting, even if another search is tried afterwards. – Thiago Arrais Apr 16 '12 at 14:18
2  
This is probably what the OP wanted in the first place and is the shortest, best answer IMHO. – 0A0D May 31 '12 at 15:05
Perfection is attainable even in this mortal realm! I will use this more than :help, and don't want to pollute <esc>: nnoremap <F1> :noh<CR> – Sam Watkins Oct 3 '12 at 8:24

I found this answer years ago on vim.org:

Add the following to your .vimrc:

"This unsets the "last search pattern" register by hitting return
nnoremap <CR> :noh<CR><CR>

Thus, after your search, just hit return again in command mode, and the highlighting disappears.

share|improve this answer
6  
I think this is a much better solution than the one that's actually been accepted -- either this one or the other one where it's mapped to <ESC> instead. – Stewart Johnson Sep 1 '10 at 22:49
This is what I do. – Nathan Long Mar 1 '11 at 17:18
7  
This is a much better answer to "nnoremap <esc> :noh<return><esc>" because it doesn't cause strange behavior. – Dennis Hodapp Mar 13 '12 at 19:36
2  
An important thing to note, make sure you don't put any comments on the right hand side of a remap. They will be interpreted as commands for the remap as opposed to comments. – codybuell Nov 15 '12 at 20:37
I would accept this one if I was OP. – Deqing Apr 15 at 6:29

From http://twitter.com/jonbho/status/2194406821

nnoremap <esc> :noh<return><esc>
share|improve this answer
2  
I think this is a much better solution than the one that's actually been accepted -- either this one or the other one where it's mapped to <CR> instead. – Stewart Johnson Sep 1 '10 at 22:51
6  
Just to be clear, this lets you clear the search highlighting by pressing the Escape key – Gavin Miller Oct 12 '10 at 16:58
4  
For some reason, this makes my terminal vim start up as if "c" was pressed. Any ideas? – Jacob Jan 24 '11 at 16:02
9  
This caused some very strange behavior when I tried it: on startup, regular vim movements (eg j, k) would cause lines to be removed. nnoremap <CR> :noh<CR><CR> didn't cause these problems. I couldn't track down the root cause. – oasisbob Aug 21 '11 at 5:48
5  
hmm, I had the same problem as those above. Don't use this as-is without testing unless you like deleting your text randomly... – Derek Litz Nov 26 '11 at 19:41
show 3 more comments

I generally map :noh to the backslash key. To reenable the highlighting, just hit 'n', and it will highlight again.

share|improve this answer

Remapped to in my .vimrc.local file, quick and dirty but very functional:

" Clear last search highlighting
map <Space> :noh<cr>
share|improve this answer

Search for an unlikely character sequence (mash the keys on the home row):

/;alskdjf;

This works in vim and less, and it's easier to remember/type than @ShaunBouckaert's logically cleaner solution "to clear the last used search pattern":

:let @/ = ""

A potential downside is that it adds junk to your search history.

share|improve this answer
3  
nice hack. i was going to post that :) – Bryan Jun 27 '12 at 7:13
+1. I normally use /aaaa – KFL Aug 3 '12 at 5:24
2  
Not only is this a dirty solution (which I myself used until now, no offense), another downside is that it adds an ugly red banner saying "pattern not found" at the bottom of the window, which is almost as annoying as the highlighting itself and requires further action to be discarded (e.g. "search + backspace"). – Skippy le Grand Gourou Dec 20 '12 at 14:49
nnoremap <cr> :noh<CR><CR>:<backspace>

That way I get rid of :noh shown in the commandline, when hitting enter after the search.

: is like starting entering a new command, Backspace clears it and puts the focus back into the editor window.

share|improve this answer

Janus for VIM and GVIM has a number of baked-in things for newbs like me, including

<leader>hs - toggles highlight search
which is exactly what you need. Just type \hs in normal mode. (The leader key is mapped to \ by default.)

HTH.

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.