More wiring of lsp manager calls and responses 2

This commit is contained in:
2024-09-15 00:21:16 -05:00
parent bc52f62982
commit 73e9babd2e
2 changed files with 46 additions and 15 deletions

View File

@@ -40,6 +40,7 @@ content_part = {
}
}
didopen_notification = {
"method": "textDocument/didOpen",
"params": {
@@ -52,6 +53,26 @@ didopen_notification = {
}
}
didsave_notification = {
"method": "textDocument/didSave",
"params": {
"textDocument": {
"uri": "file://<path>"
},
"text": ""
}
}
didclose_notification = {
"method": "textDocument/didClose",
"params": {
"textDocument": {
"uri": "file://<path>"
}
}
}
didchange_notification = {
"method": "textDocument/didChange",
"params": {
@@ -100,7 +121,7 @@ completion_request = {
},
"contet": {
"triggerKind": 3,
"triggerCharacter":
"triggerCharacter": ""
}
}
}
@@ -153,4 +174,4 @@ symbols_request = {
"text": ""
}
}
}
}