aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp/vhdl_ls.py
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-06-26 06:52:54 +0200
committerTristan Gingold <tgingold@free.fr>2022-06-26 06:52:54 +0200
commit205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b (patch)
tree3405e35e9fb4aa4657b82e3b1acc456169aadbf8 /pyGHDL/lsp/vhdl_ls.py
parent3c6568ef196a3592283792abbf2c485329bb1d30 (diff)
downloadghdl-205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b.tar.gz
ghdl-205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b.tar.bz2
ghdl-205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b.zip
pyGHDL/lsp: ignore setTrace request
Diffstat (limited to 'pyGHDL/lsp/vhdl_ls.py')
-rw-r--r--pyGHDL/lsp/vhdl_ls.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyGHDL/lsp/vhdl_ls.py b/pyGHDL/lsp/vhdl_ls.py
index 8207c9e28..dea9542b9 100644
--- a/pyGHDL/lsp/vhdl_ls.py
+++ b/pyGHDL/lsp/vhdl_ls.py
@@ -16,6 +16,7 @@ class VhdlLanguageServer(object):
"initialized": self.initialized,
"shutdown": self.shutdown,
"$/setTraceNotification": self.setTraceNotification,
+ "$/setTrace": self.setTrace,
"textDocument/didOpen": self.textDocument_didOpen,
"textDocument/didChange": self.textDocument_didChange,
"textDocument/didClose": self.textDocument_didClose,
@@ -39,6 +40,9 @@ class VhdlLanguageServer(object):
def setTraceNotification(self, value):
pass
+ def setTrace(self, value):
+ pass
+
def capabilities(self):
server_capabilities = {
"textDocumentSync": {