We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I had to apply this diff to make it work with lsp4ij:
diff --git a/server/lsp_interface.jai b/server/lsp_interface.jai index b8dda8a..19ce430 100644 --- a/server/lsp_interface.jai +++ b/server/lsp_interface.jai @@ -15,12 +15,12 @@ LSP_Client_Message :: struct(T: Type) { LSP_Response_Message :: struct { using base: LSP_Message; - id: u32; + id: string; } LSP_Request_Message :: struct { using base: LSP_Message; - id: u32; + id: string; method: string; } @@ -740,7 +740,7 @@ lsp_send :: (data: $T) { print("Content-Length: %\r\n\r\n%", body.count, body); } -lsp_respond :: (id: u32, data: $T) { +lsp_respond :: (id: string, data: $T) { Full_Reply :: struct { using response: LSP_Response_Message; result: T;
Not sure which one is standard compliant.
The text was updated successfully, but these errors were encountered:
The LSP spec supports the both, so I think you shoud support the both.
Sorry, something went wrong.
No branches or pull requests
I had to apply this diff to make it work with lsp4ij:
Not sure which one is standard compliant.
The text was updated successfully, but these errors were encountered: