mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-26 14:50:31 -04:00
Merge VS Code 1.31.1 (#4283)
This commit is contained in:
@@ -28,8 +28,8 @@ class MoveCaretAction extends EditorAction {
|
||||
let commands: ICommand[] = [];
|
||||
let selections = editor.getSelections();
|
||||
|
||||
for (let i = 0; i < selections.length; i++) {
|
||||
commands.push(new MoveCaretCommand(selections[i], this.left));
|
||||
for (const selection of selections) {
|
||||
commands.push(new MoveCaretCommand(selection, this.left));
|
||||
}
|
||||
|
||||
editor.pushUndoStop();
|
||||
|
||||
Reference in New Issue
Block a user