Reputation: 1547
In visual studio we can use Resharper for refactoring, but in VS Code I can't find a good refactoring tool.I just want to know if there is any name refactoring tool in VS code especially for type script?
Upvotes: 8
Views: 4443
Reputation: 299
The official way to refactor variable names is F2 key.
It's able to change variable names in the other files too.
You can find out more about the default refactoring in VS Code here: Refactoring source code in Visual Studio Code
Upvotes: 3