deno lsp over named pipe?
Hi,
I'm trying to build a proof of concept lsp tool (client) integrating deno lsp. I've read all the docs about this https://docs.deno.com/runtime/reference/lsp_integration/ but I'm stuck at very basic level; once the language server is running how do I connect to it? Can I use stdio or named pipes, or is there a port I need to connect to to send messages with json rpc? I'm on windows by the way.
Deno looks so impressive!
2 Replies
Once you run
deno lsp
all the communication is done over stdio stream - you write requests to stdin and read them out from stdoutIdeal I'll give that a go, thanks