editor-multicursorfeature-requesthelp wanted
Description
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:
- Select
value. - Press
Ctrl+D. - Type
array. - See that both symbols have changed, while preserving their proper casing.
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.