add configuration option

This commit is contained in:
jprochazk 2023-11-07 16:33:45 +01:00
parent 3e4de963a2
commit c566136854
3 changed files with 11 additions and 2 deletions

View file

@ -1,12 +0,0 @@
import * as lc from "vscode-languageclient/node";
export class RaLanguageClient extends lc.LanguageClient {
override error(message: string, data?: any, showNotification?: boolean | "force"): void {
// ignore `Request TYPE failed.` errors
if (message.startsWith("Request") && message.endsWith("failed.")) {
return;
}
super.error(message, data, showNotification);
}
}