Is there an equivalent of CTRL+D in VSCode for Leetcode?

In VSCode, Ctrl+D multi-selects your current selection as well as the next occurrence(s)
I find it annoying that I have to use Ctrl+LMB to select multiple since I have to drag-select if the desired selection is not a single word

Similar shortcuts:

  1. Alt+F3 to select all occurrences of a selection
  2. Ctrl+F3 to select next occurrence of a selection (moves your cursor, does not keep current selection)
  3. Shift+F3 to select previous occurrence of a selection (moves your cursor, does not keep current selection)
Comments (1)