More wiring of lsp manager calls and responses 2
This commit is contained in:
@@ -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": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user