I am a regex supernoob (just reading my first articles about them), and at the same time working towards stronger use of vim. I would like to use a regex to search for all instances of a colon : that are not followed by a space and insert one space between those colons and any character after them.
If I start with:
foo:bar
I would like to end with
foo: bar
I got as far as %s/:[a-z] but now I don't know what do for the next part of the %s statement.
Also, how do I change the :[a-z] statement to make sure it catches anything that is not a space?
/to build the search term and get it to match exactly what I want it to and then run the replace with a blank search term. In Vim%s//bar/gwill replace the previous search term with bar. This has made it much easier for me to explore what is possible for my search term without needing to try and copy the search term into the middle of my replace command – Sam Brinck Dec 6 '11 at 20:59'incsearch'option set since the text matching the search is highlighted as you type. That makes it very easy to fiddle with the pattern and immediately see the results. – jamessan Dec 6 '11 at 21:21