goto super places cursor on mod

This commit is contained in:
Aleksey Kladov 2018-09-16 16:25:24 +03:00
parent b5cb53ea93
commit bb2331b98e

View file

@ -77,6 +77,7 @@ export function activate(context: vscode.ExtensionContext) {
let doc = await vscode.workspace.openTextDocument(uri)
let e = await vscode.window.showTextDocument(doc)
e.selection = new vscode.Selection(range.start, range.start)
e.revealRange(range, vscode.TextEditorRevealType.InCenter)
})