If I do either of the following two:

call search("searchString")

exec "/ searchString"

From a script, then vim does the search but does not highlight the results, even though hlsearch. Doing the same searches from outside a script highlights the results.

Thanks

link|improve this question

I just found the answer myself.. always the way. Here it is: call search(l:searchString) call matchadd('Search', l:searchString) – crelbor Nov 26 '09 at 13:11
Please add your answer as a real answer here. It's hard to spot the comment when you are really looking for an answer. – innaM Nov 26 '09 at 13:13
feedback

3 Answers

up vote 4 down vote accepted

Just found out the answer myself:

call search(l:searchString)
call matchadd('Search', l:searchString)
link|improve this answer
Does this allow for the normal use of n/N for next/previous match? – alesplin Feb 12 '10 at 18:02
yes yes yes yes – crelbor Mar 3 '10 at 2:57
feedback

You could use :set hlsearch to enable and :set nohlsearch to disable highlighting.

link|improve this answer
This doesn't work, hlsearch is on before the script is called, and calling it in the script also doesn't change things. Thanks for replying. – crelbor Nov 26 '09 at 13:04
-1 for not reading the question – Matteo Riva Nov 26 '09 at 13:13
feedback

You need to put this in your .vimrc file

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif

The .vimrc file is usually located in your home directory, or you can find it using "locate .vimrc"

link|improve this answer
This is about scripting in vim, not turning on highlighting searches and syntax highlighting in general. – crelbor Nov 26 '09 at 13:10
feedback

Your Answer

 
or
required, but never shown

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