Merge pull request #3 from rdoubleui/xpath_query_output
XPath Feature: Add last query to output channel
This commit is contained in:
commit
eeb0ed8d4c
@ -34,6 +34,8 @@ export function evaluateXPath(editor: TextEditor, edit: TextEditorEdit): void {
|
||||
if (resultChannel === null) resultChannel = window.createOutputChannel('XPath Evaluation Results');
|
||||
resultChannel.clear();
|
||||
|
||||
resultChannel.appendLine('Last query: ' + query + '\n');
|
||||
|
||||
nodes.forEach((node) => {
|
||||
resultChannel.appendLine(`${node.localName}: ${node.firstChild.data}`);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user