Mohammad Niazmand
Mohammad Niazmand

Reputation: 1547

Rename refactoring in VS Code

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

Answers (1)

The official way to refactor variable names is F2 key.
It's able to change variable names in the other files too.

enter image description here

You can find out more about the default refactoring in VS Code here: Refactoring source code in Visual Studio Code

Upvotes: 3

Related Questions