Skip to content
New issue

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

Incompatible with lsp4ij #38

Open
amokfa opened this issue Feb 13, 2025 · 1 comment
Open

Incompatible with lsp4ij #38

amokfa opened this issue Feb 13, 2025 · 1 comment

Comments

@amokfa
Copy link

amokfa commented Feb 13, 2025

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.

@angelozerr
Copy link

angelozerr commented Feb 26, 2025

The LSP spec supports the both, so I think you shoud support the both.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants