feat: adds spicedb language server by ml...
# spicedb
m
Hey all I'm (not sure if this is the right channel to ask) , trying to add spicedb support to the "zed" editor. It's using my tree-sitter grammer that I wrote without problem, but for some reason the lsp isn't respecting things like go to definition and other functions that are respected in the vscode extension. Ultimately I'm trying to figure out if this is something I have to configure during the setup of spicedb lsp in the extension i wrote or if this is just a problem with the zed editor, you can find the PR that has the entirety of the code setting up the lsp [here](https://github.com/mleonidas/authzed-zed/pull/1/files) the lsp log gets information for goto definition but it doesn't send anything back
Copy code
// Receive:
{"id":18,"result":{"contents":{"language":"spicedb","value":"definition organization {\n\t// ...\n}"},"range":{"start":{"line":94,"character":11},"end":{"line":94,"character":23}}},"jsonrpc":"2.0"}
y
yeah that seems odd. we might be able to have a look at this on friday.
m
thanks I really appreciate it, I'm just honestly trying to figure out if it's zed the editor itself sending something wrong to spicedb or somethng I did