Reputation: 451
I have a class named Error
. When I try to rename it with Ctrl+F6
, PyCharm wants to also rename any Error
appearances in library moudles, too. Is there a way to limit the scope in which PyCharm looks for occurences of Error
?
Thank you!
Upvotes: 0
Views: 31
Reputation: 4146
Right-click on the project tree and mark your source code as "sources" and external libraries as "excluded".
Upvotes: 2