-
Notifications
You must be signed in to change notification settings - Fork 79
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
[Feature Request] Select Next Occurrence (in addition to currently selected text) #818
Comments
Thank you for the feedback. This is something nice to have but the keyboard shortcut is a problem here. VS Code uses It seems I need to change that since |
Yes I believe it's the same in Sublime as well. I'm reading up on CodeMirror Extensions. my typescript knowledge is little-to-none, but I'm willing to at least attempt to stumble my way into creating a working extension for this myself 😅
|
No worries, my implementation in #820 uses the function you mentioned. I added an entry to the Edit -> Find menu. |
OH WOW I did not expect that!! You ARE AWESOME. |
A common feature of some editors is the ability to select, not only 'all occurrences' but the next occurrence as well. A user has a string of text selected, press Ctrl + D (for example) and the next occurrence of the selected text in the document would also be selected. This is useful where multiple occurrences of a selection need to be edited simultaneously, but not all occurrences in the document.
The text was updated successfully, but these errors were encountered: