editor-multicursorfeature-requesthelp wanted
Métriques du dépôt
- Stars
- (74 848 stars)
- Métriques de merge PR
- (Merge moyen 11h 43m) (1 000 PRs mergées en 30 j)
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.