I want that when I rename a file vscode automatically changes all the import statements across all my project's files.
I've tested that feature in vscode (python) before and actually works fine for me, but when all the code is directly in the workspaceFolder.
right now, I'm working in a project and its structure is like:
workspaceFolder
-----.vscode/
-----Include/
-----Lib/
-----Scripts/
-----src/
-----all_my_code
-----tests/
-----all_my_test_code
-----.env
-----.gitignore
-----Procfile
-----pyenv.cfg
-----etc*
and when I change some file in the src directory vscode does not refactor across the other files in my project.
are there some settings to fix that?