Re: Insert New Line Bug?
Not sure how to classify this bug but here's the behavior I'm seeing in VS2010 c# code.
Here's the code to reproduce:
Dog.cs
abstract public class Dog {
abstract public void Bark();
}
Poodle.cs
public class Poodle : Dog {
}
<compile>
Error List window:
Poodle does not implement inherited abstract member...
<doubleclick the error list item to take you to the Poodle.cs file>
Here's where the viemu bug happens:
When i place the cursor at "public class Poodle..." and press o to insert a new line, a new line isnt inserted. The cursor jumps to "Poodle" and Poodle is highlighted and i seem to be switched into visual selection mode.
Hope this makes sense.