i clicked CTRL + Shift + L and it’s enable the highlight mode, now it’s not going to turn off by ctrl + shift + l and also not able to find relative settings
Main Goal was - basic editing as like vs code - Multi Cursor Multi Selection (but this also missing in cursor)
Hey, this isn’t actually a “highlight mode.” Ctrl+Shift+L is the standard VS Code shortcut for Select All Occurrences of Find Match editor.action.selectHighlights. It adds multiple cursors to all matching text, and it’s a one-time action, not a toggle. Pressing the same shortcut again won’t undo it.
To exit, just press Escape.
Multi-cursor editing works the same as in VS Code:
Ctrl+Shift+L selects all occurrences of the current selection
Alt+Click adds a cursor where you click
Ctrl+D selects the next occurrence one by one
If you want to rebind or disable the shortcut, open Keyboard Shortcuts Ctrl+K Ctrl+S, search for “Select All Occurrences of Find Match,” and change or remove it.