1

I'm able to do Multiline editing in VSCode but when I hit the 'end' key, it leaves multiline edit mode.

My lines have different lengths/number of words so ctrl+arrow doens't work.

Is there a config or other shortcut that would get me to the end of each line without leaving multiline mode?

This ext would work, but I'd like to avoid installing any.

AncientSwordRage
  • 7,086
  • 19
  • 90
  • 173

1 Answers1

1

I can't reproduce. I press Alt and click within several lines to add cursors, then I press End. All cursors move to the ends of the lines.

As an alternative, you can also use the editor.action.insertCursorAtEndOfEachLineSelected command (default keybinding is Shift+Alt+I) after selecting some lines.

Bill_Stewart
  • 22,916
  • 4
  • 51
  • 62