Reputation: 983
I am using Pycharm professional edition for my Python and Django project.
Is there anything in pycharm so that whenever i change the Varibale name/Function name/class name where it has been defined in the middle of my project. It will automatically changes the name wherever it has been referenced in a project with multiple files.
So that i dont have to check manually where it is used and change it accordingly.
Any suggestion please suggest.
Upvotes: 1
Views: 89
Reputation: 3734
Right click -> refactor
-> rename
Then you get a dialog that will preview the changes for you.
Very slick.
Upvotes: 2