May 2017
As of version 1.13
Add multiple cursors with Ctrl / Cmd + Click
VSCode
developers have introduced a new setting, editor.multiCursorModifier
, to change the modifier key for applying multiple cursors to Cmd + Click
on macOS and Ctrl + Click
on Windows and Linux. This lets users coming from other editors such as Sublime Text or Atom continue to use the keyboard modifier they are familiar with.
The setting can be set to:
ctrl/Cmd
- Maps to Ctrl on Windows and Cmd on macOS.
alt
- The existing default Alt.
There's also a new menu item Use Ctrl + Click
for Multi-Cursor
in the Selection
menu to quickly toggle this setting.
The Go To Definition and Open Link gestures will also respect this setting and adapt such that they do not conflict. For example, when the setting is ctrl/Cmd
, multiple cursors can be added with Ctrl / Cmd + Click
, and opening links or going to definition can be invoked with Alt +Click
.
With fixing Issue #2106, it is now possible to also remove a cursor by using the same gesture on top of an existing selection.