mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
auto-fixed prefer-const violation
This commit is contained in:
@@ -21,7 +21,7 @@ export function fetchSelectItem(direction: string): void {
|
||||
return;
|
||||
}
|
||||
|
||||
let newSelections: vscode.Selection[] = [];
|
||||
const newSelections: vscode.Selection[] = [];
|
||||
editor.selections.forEach(selection => {
|
||||
const selectionStart = selection.isReversed ? selection.active : selection.anchor;
|
||||
const selectionEnd = selection.isReversed ? selection.anchor : selection.active;
|
||||
|
||||
Reference in New Issue
Block a user