Prettier fix

This commit is contained in:
Alan Du 2019-01-15 11:15:51 -05:00
parent ca239ace93
commit 86775c1418

View file

@ -46,6 +46,9 @@ export async function handle(change: SourceChange) {
return;
}
editor.selection = new vscode.Selection(position, position);
editor.revealRange(new vscode.Range(position, position), vscode.TextEditorRevealType.Default);
editor.revealRange(
new vscode.Range(position, position),
vscode.TextEditorRevealType.Default
);
}
}