Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/emmet/src/selectItem.ts')
-rw-r--r--extensions/emmet/src/selectItem.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/emmet/src/selectItem.ts b/extensions/emmet/src/selectItem.ts
index 52e672eddf3..437dbed7ec9 100644
--- a/extensions/emmet/src/selectItem.ts
+++ b/extensions/emmet/src/selectItem.ts
@@ -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;