[DevExpress Support Team: CLONED FROM T384052: Move Type To File refactoring in CodeRush for Roslyn // navigation stack]
- Say that I have a file Foo.cs with classes Foo and Bar.
- I apply Move Type to File on class Bar.
- I get a new document Bar.cs.
I am missing the ability to press ESC at this point to return to file Foo.cs, at the point where class Bar was before the refactoring.
Getting back to Foo.cs, I have now an empty line as a leftover of class Bar having been extracted:
Before:
namespace X
{
public class Foo
{
}
public class Bar
{
}
}
After:
namespace X
{
public class Foo
{
}
<-- leftover here after extraction
}