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 dc1065b commit eb3b507Copy full SHA for eb3b507
src/documentation/DocumentationPreviewEditor.ts
@@ -66,11 +66,9 @@ export class DocumentationPreviewEditor implements vscode.Disposable {
66
this.subscriptions.push(
67
this.webviewPanel.webview.onDidReceiveMessage(this.receiveMessage.bind(this)),
68
vscode.window.onDidChangeActiveTextEditor(editor => {
69
- console.log(`editor changed`);
70
this.renderDocumentation(editor);
71
}),
72
vscode.window.onDidChangeTextEditorSelection(event => {
73
- console.log(`change kind:{${event.kind}}`);
74
this.renderDocumentation(event.textEditor);
75
76
this.webviewPanel.onDidDispose(this.dispose.bind(this))
0 commit comments