generated from itdominator/Python-With-Gtk-Template
Temporary path changes; README updates; fixes
This commit is contained in:
parent
033cf5b27d
commit
cfa718df88
|
@ -9,3 +9,12 @@ A helpful tool to handle LSPs (Language Server Protocols) by creating the LSP pr
|
||||||
|
|
||||||
### Note
|
### Note
|
||||||
WIP
|
WIP
|
||||||
|
|
||||||
|
# TODO
|
||||||
|
<ul>
|
||||||
|
<li>Refactor widgets and do proper separation of concerns. (Now that I can successfully make crafted queries).</li>
|
||||||
|
<li>Remove helpful defaulting of paths given they're system specific.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
# Images
|
||||||
|
![1 LSP Manager Window. ](images/pic1.png)
|
Binary file not shown.
After Width: | Height: | Size: 98 KiB |
|
@ -24,7 +24,7 @@ content_part = """{
|
||||||
"method": "textDocument/definition",
|
"method": "textDocument/definition",
|
||||||
"params": {
|
"params": {
|
||||||
"textDocument": {
|
"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",
|
"languageId": "python3",
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"text": ""
|
"text": ""
|
||||||
|
@ -46,7 +46,7 @@ references_query = """{
|
||||||
"includeDeclaration": false
|
"includeDeclaration": false
|
||||||
},
|
},
|
||||||
"textDocument": {
|
"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",
|
"languageId": "python3",
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"text": ""
|
"text": ""
|
||||||
|
@ -64,7 +64,7 @@ symbols_query = """{
|
||||||
"method": "textDocument/documentSymbol",
|
"method": "textDocument/documentSymbol",
|
||||||
"params": {
|
"params": {
|
||||||
"textDocument": {
|
"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",
|
"languageId": "python3",
|
||||||
"version": 1,
|
"version": 1,
|
||||||
"text": ""
|
"text": ""
|
||||||
|
@ -207,7 +207,7 @@ class LSPMessageBox(Gtk.Box):
|
||||||
self.make_request("initialize", self._lsp_init_data)
|
self.make_request("initialize", self._lsp_init_data)
|
||||||
button.set_sensitive(False)
|
button.set_sensitive(False)
|
||||||
|
|
||||||
def send_initialized_message():
|
def send_initialized_message(self):
|
||||||
self.make_request("initialized")
|
self.make_request("initialized")
|
||||||
|
|
||||||
def make_notification(self, method: str, params: {} = {}):
|
def make_notification(self, method: str, params: {} = {}):
|
||||||
|
|
Loading…
Reference in New Issue