Imports refactoring on MOVE/RENAME of the entire package #5813
funkindy
started this conversation in
Enhancement
Replies: 3 comments 1 reply
-
Moving this issue to discussion as an enhancement request for comments and upvotes. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I guess, currently we only support rename folder, not move folder |
Beta Was this translation helpful? Give feedback.
0 replies
-
In my hands, folder rename refactoring is broken, as well as rename refactoring when moving multiple files, as already reported by someone else: #5310 Having full support for file and folder move refactoring would be a huge help for many developers, thank you for considering it! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am doing structural refactoring of my project and would like to move a package called
base
to the package calledcommon
.Before the refactoring they are on the same level:
I tried two options:
base
intocommon
base
tocommon/base
each options leads to the desired structure:
But there is no import refactoring throughout the project after that, so i manually have to change
from base.*
tofrom common.base.*
it would be a nice feature to auto refactor import on module/package move.
Beta Was this translation helpful? Give feedback.
All reactions