0

Let's say I have the following two lines of code, where - represents whitespace, and | represents my cursor.

var foo = FooBarBaz-----------------
--------------|.Xyzzy

Using Resharper 8.0 with Visual Studio 2013, how can I remove all the indicated whitespace to create the following line, quickly and without using my mouse?

var foo = FooBarBaz.Xyzzy
Matthew Piziak
  • 3,430
  • 4
  • 35
  • 49

1 Answers1

1
  1. Hold Shift, press the Up arrow, End
  2. Press Delete

or

Press Ctrl + Backspace, then Backspace

GentlePurpleRain
  • 529
  • 1
  • 5
  • 24