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 90477f8 commit cab4f38Copy full SHA for cab4f38
src/standardLanguageClient.ts
@@ -128,8 +128,12 @@ export class StandardLanguageClient {
128
await onExtensionChange(extensions.all);
129
});
130
}
131
-
132
- registerPasteEventHandler(context, this.languageClient);
+ try {
+ registerPasteEventHandler(context, this.languageClient);
133
+ } catch (error) {
134
+ // clients may not have properly configured documentPaste
135
+ logger.error(error);
136
+ }
137
activationProgressNotification.hide();
138
if (!hasImported) {
139
showImportFinishNotification(context);
0 commit comments