Highlight search matches To enable search match highlighting: :set hlsearch or :hls
To disable search match highlighting: :nohlsearch or :nohls or :set hohlsearch to completely turn it off during session
To search and replace some strings use following: :%s/==.*/ %s searches for the string in all lines, not only in the current line.