Hey everyone,

Is there a way to make it so that when I am editing something like this:


function foo() {
  $blah;
  $blah2;
}

And then I decide that I want to remove $blah2, so I start to press
backspace from here:

fucntion foo() {
   $blah;
   $blah2; <----- cursor here
}

and then when I get to the beginning of the line, it stops. Can I make
it so that it will follow up to the end of $blah on the previous line?

thanks!

Ben

Reply via email to