Hi! How can I highlight same occurrences of a text? (e.g. in vscode, I can highlight the text and press Ctrl+D to find same occurrences).
not kotlin but kotlin colored 1
s
Szymon Jeziorski
02/16/2024, 8:47 AM
CTRL+ALT+SHIFT+J would be default Windows shortcut for selecting all occurrences of given text.
CTRL+SHIFT+F7 would just highlight them without selection
You can look up related shortcuts by going to
settings -> keymap -> Main Menu -> Edit -> Find / Find Usages
m
Manasseh
02/16/2024, 9:48 AM
Thanks. Ctrl+Alt+Shift+J works just fine. It's what I've been looking for 🙂