diff options
| author | Tristan Gingold <tgingold@free.fr> | 2022-06-26 06:52:54 +0200 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2022-06-26 06:52:54 +0200 | 
| commit | 205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b (patch) | |
| tree | 3405e35e9fb4aa4657b82e3b1acc456169aadbf8 /pyGHDL | |
| parent | 3c6568ef196a3592283792abbf2c485329bb1d30 (diff) | |
| download | ghdl-205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b.tar.gz ghdl-205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b.tar.bz2 ghdl-205a0dccbb5e7d0b0d91b1d2634b5840af6cee6b.zip | |
pyGHDL/lsp: ignore setTrace request
Diffstat (limited to 'pyGHDL')
| -rw-r--r-- | pyGHDL/lsp/vhdl_ls.py | 4 | 
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": { | 
