How to select a column in Visual Studio Code on Linux

visual-studio-code

I believe that column select (vertical select) is alt+drag on Windows, but can't find how to do it on Linux.

Best Answer

Seems that there isn't such feature in visual studio code.
But there's a feature called multiple cursors which is supposedly more powerful than column selection. so here's how to use it:

  • ctrl+alt+up/down to create multiple cursors.

  • hold shift then use left/right to select text block.

ref: https://github.com/Microsoft/vscode/issues/1515

Related Question