Update Version: 1.4.5

This commit is contained in:
2026-05-21 21:17:10 -04:00
parent c42ae39bb8
commit 18738c399d
13 changed files with 7 additions and 47 deletions
+2 -9
View File
@@ -248,9 +248,6 @@
const msg = JSON.parse(data);
if (msg.type === 'init') {
lspInitialized = true;
// Recreate the client because the backend started a completely new LSP process
// which requires a fresh 'initialize' handshake.
client = new LSPClient({
rootUri: msg.rootUri,
timeout: 10000,
@@ -262,9 +259,7 @@
});
return;
}
} catch (err) {
// Fallthrough
}
} catch (err) {}
}
let processedData = data;
@@ -281,9 +276,7 @@
for (let h of lsHandlers) h(processedData);
};
lsSocket.onopen = () => {
// Waiting for init message from server
};
lsSocket.onopen = () => {};
}
connectLsp();