Re: search and replace after newline not working
Here is the string I have:
<table><tr><td></td><td></td><td></td></table>
I want it to look like:
<table><tr>
<td></td>
<td></td>
<td></td></tr></table
Either of these work in vim:
:s/<td/\r<td/g
:s/\(<td\)/\r\1/g
In ViEmu for Visual Studio 2010 they both result in:
<table><tr>
></td>
></td>
></td></tr></table>
<td<td<td