diff --git a/README.md b/README.md index 4354c32..f47e038 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,13 @@ A helpful tool to handle LSPs (Language Server Protocols) by creating the LSP pr ### Note -WIP \ No newline at end of file +WIP + +# TODO + + +# Images +![1 LSP Manager Window. ](images/pic1.png) \ No newline at end of file diff --git a/images/pic1.png b/images/pic1.png new file mode 100644 index 0000000..f781c39 Binary files /dev/null and b/images/pic1.png differ diff --git a/src/core/widgets/lsp_message_box.py b/src/core/widgets/lsp_message_box.py index 42cce56..2eb25df 100644 --- a/src/core/widgets/lsp_message_box.py +++ b/src/core/widgets/lsp_message_box.py @@ -24,7 +24,7 @@ content_part = """{ "method": "textDocument/definition", "params": { "textDocument": { - "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager/src/core/widgets/lsp_message_box.py", + "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/000_Usable/gtk/LSP-Manager/src/core/widgets/lsp_message_box.py", "languageId": "python3", "version": 1, "text": "" @@ -46,7 +46,7 @@ references_query = """{ "includeDeclaration": false }, "textDocument": { - "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager/src/core/widgets/lsp_message_box.py", + "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/000_Usable/gtk/LSP-Manager/src/core/widgets/lsp_message_box.py", "languageId": "python3", "version": 1, "text": "" @@ -64,7 +64,7 @@ symbols_query = """{ "method": "textDocument/documentSymbol", "params": { "textDocument": { - "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/testing/lsp_manager/src/core/widgets/lsp_message_box.py", + "uri": "file:///home/abaddon/Coding/Projects/Active/Python_Projects/000_Usable/gtk/LSP-Manager/src/core/widgets/lsp_message_box.py", "languageId": "python3", "version": 1, "text": "" @@ -207,7 +207,7 @@ class LSPMessageBox(Gtk.Box): self.make_request("initialize", self._lsp_init_data) button.set_sensitive(False) - def send_initialized_message(): + def send_initialized_message(self): self.make_request("initialized") def make_notification(self, method: str, params: {} = {}):