Delete blank lines after Ctrl + K Ctrl + D

In VS 2012 and earlier, I was able to press CTRL+ K, CTRL+ D, which would change

<div>

   <div>

      <asp:TextBox runat="server" Id="Textbox1"></asp:/TextBox>

   </div>
</div>

to

<div>
   <div>
      <asp:TextBox runat="server" Id="Textbox1"></asp:/TextBox>
   </div>
</div>

Thus, it will remove the extra lines. In VS 2013, when I do the same, it does not format it correctly (or as I prefer).

I looked under Tools , but nothing that I can see to sort the problem, I also have Power Tools Performance , and again there is no way to remove additional lines.

Anyway around this?

Change 1

using \ n \ n and \ n Search

+4
source share
1 answer

Windows \r\n. , ^\r\n .

enter image description here

. Replace... - .

0

All Articles