We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da7029 commit 9039431Copy full SHA for 9039431
src/extension.ts
@@ -169,7 +169,7 @@ export function activate(context: vscode.ExtensionContext) {
169
const symbol = await getSymbolFromXPath(args, doc);
170
if (symbol) {
171
editor.selection = new vscode.Selection(symbol.range.start, symbol.range.end);
172
- XsltSymbolProvider.selectTextWithSymbol(symbol);
+ editor.revealRange(symbol.range);
173
}
174
175
0 commit comments