Additional wiring of lsp manager calls and responses

This commit is contained in:
2024-09-15 01:15:39 -05:00
parent 73e9babd2e
commit f39d1a39f6
3 changed files with 31 additions and 21 deletions

View File

@@ -27,7 +27,7 @@ content_part = {
"method": "textDocument/definition",
"params": {
"textDocument": {
"uri": "file:///",
"uri": "file://",
"languageId": "python",
"version": 1,
"text": ""
@@ -45,7 +45,7 @@ didopen_notification = {
"method": "textDocument/didOpen",
"params": {
"textDocument": {
"uri": "file://<path>",
"uri": "file://",
"languageId": "python",
"version": 1,
"text": ""
@@ -57,7 +57,7 @@ didsave_notification = {
"method": "textDocument/didSave",
"params": {
"textDocument": {
"uri": "file://<path>"
"uri": "file://"
},
"text": ""
}
@@ -67,7 +67,7 @@ didclose_notification = {
"method": "textDocument/didClose",
"params": {
"textDocument": {
"uri": "file://<path>"
"uri": "file://"
}
}
}
@@ -77,7 +77,7 @@ didchange_notification = {
"method": "textDocument/didChange",
"params": {
"textDocument": {
"uri": "file://<path>",
"uri": "file://",
"languageId": "python",
"version": 1,
"text": ""
@@ -130,7 +130,7 @@ definition_request = {
"method": "textDocument/definition",
"params": {
"textDocument": {
"uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/000_Usable/gtk/LSP-Manager/src/core/widgets/lsp_message_box.py",
"uri": "file://",
"languageId": "python",
"version": 1,
"text": ""
@@ -150,7 +150,7 @@ references_request = {
"includeDeclaration": False
},
"textDocument": {
"uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/000_Usable/gtk/LSP-Manager/src/core/widgets/lsp_message_box.py",
"uri": "file://",
"languageId": "python",
"version": 1,
"text": ""
@@ -168,10 +168,10 @@ symbols_request = {
"method": "textDocument/documentSymbol",
"params": {
"textDocument": {
"uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/000_Usable/gtk/LSP-Manager/src/core/widgets/lsp_message_box.py",
"uri": "file://",
"languageId": "python",
"version": 1,
"text": ""
}
}
}
}