-
Notifications
You must be signed in to change notification settings - Fork 30.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple Cursors - Preserve Case #106502
Comments
Great requirement! I'm seeing this all the time when renaming across variables, types and functions.
|
This should include |
I think there are two sub features hidden in this issue:
It seems only the latter is scope of this issue while the former might actually be simpler to implement. |
It is case-sensitive when you also selected the first selection with Cmd+D. |
I don't follow. How can I select the first selection with Cmd-D? Imho Cmd-D expands the current selection with an additional cursor? Would be great if you could explain. |
(from @alexdima) |
Until this is not implemented, Multiple cursor case preserve extension does the trick 👍 |
Use Case
Take the following:
const [value, setValue] = useState();
I want to change it to:
const [array, setArray] = useState();
Feature Ask
It would be great to:
value
.Ctrl+D
.array
.Right now, I need to conduct two edit operations to do this. Alternatively, I can use a single Find & Replace operation, but that would be disproportionately time-consuming for this task, as well as less precise.
The text was updated successfully, but these errors were encountered: