- 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
}
Hi Pierre,
>Getting back to Foo.cs, I have now an empty line as a leftover of class Bar having been extracted:
Thank you for the provided code snippet. I have reproduced the problem.
We will do our best to fix the issue as soon as possible. Once we resolve the problem, we will let you know about this in the context of this ticket.
>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.
I have created a new ticket regarding this issue - The "Move Type To File" feature - Support the capability to return the caret to the source place after the feature was applied
We will let you know of our progress there.