Vim Tips Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Tip 168 Printable Monobook Previous Next

created 2001 · complexity basic · author Carl Lunde · version 6.0


Gvim has an excellent syntax highlighting for XPM images, but sometimes it's useful to view the actual data. This can be achieved by searching for everything, type in "/." and all characters will be highlighted and therefore the old colouring is lost. To regain the normal highlighting you can search for a non-existent sequence, like "/foo".

Comments

This requires search highlighting to be turned on, see VimTip14 (or just type :set hlsearch). It should also work with 5.7


Instead of searching for something nonexistant like /foo, just type :noh (for no highlighting)


Advertisement