Those errors look like your visualstudio code is trying to use “language server protocol” - which is used for stuff like auto-complete/ jump to definition and so forth but they seem to fail;
Either
Those features are not supported by the lsp itself
lsp is not running
lsp is running but its blocked by some local firewall of yours …
Im not an expert here, nor have i ever used vscode so everything below is pure speculation:
Atleast robocorp’s lsp supports codeLens – maybe robotcode lsp does not ? Then, since both work on the “robot framework syntax”, vscode has option "does robot framework lsp support feature X (codelens and those other 2) and stores that value into settings.
Now, if you have 2, or at least had used both at some point, the settings still say that feature “xx” should be working and then vscode fires the events to another lsp that actually doesn’t support that feature and you are seeing an error.
Rationale for this is that for example, typescript codelens feature is enabled via typescript.referencesCodeLens.enabled": true. – that does not mention which possible lsp provides that support…
Having 2 separate LSP’s at one time does feel like it would be prone to errors like this…