diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-26 18:27:30 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-26 21:56:33 +0100 |
commit | 446f15d3b4b410fc7a9443a6bd010e8d1db735bd (patch) | |
tree | 2865d0161e04e97bac8f1e3dc89dcf9391330618 /pyGHDL/lsp/workspace.py | |
parent | ab3c672925cb214be9d732835e891557a511b173 (diff) | |
download | ghdl-446f15d3b4b410fc7a9443a6bd010e8d1db735bd.tar.gz ghdl-446f15d3b4b410fc7a9443a6bd010e8d1db735bd.tar.bz2 ghdl-446f15d3b4b410fc7a9443a6bd010e8d1db735bd.zip |
pyGHDL/lsp: update, handle hover
Diffstat (limited to 'pyGHDL/lsp/workspace.py')
-rw-r--r-- | pyGHDL/lsp/workspace.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pyGHDL/lsp/workspace.py b/pyGHDL/lsp/workspace.py index 88200bc49..fe808c23c 100644 --- a/pyGHDL/lsp/workspace.py +++ b/pyGHDL/lsp/workspace.py @@ -46,6 +46,8 @@ class Workspace(object): errorout_memory.Install_Handler() flags.Flag_Elocations.value = True # flags.Verbose.value = True + # Gather comments + flags.Flag_Gather_Comments.value = True # We do analysis even in case of errors. parse.Flag_Parse_Parenthesis.value = True # Force analysis to get more feedback + navigation even in case @@ -393,12 +395,16 @@ class Workspace(object): if decl_loc is None: return None res = [decl_loc] + # If the declaration is a component, also add the entity. if nodes.Get_Kind(decl) == nodes.Iir_Kind.Component_Declaration: ent = libraries.Find_Entity_For_Component(nodes.Get_Identifier(decl)) if ent != nodes.Null_Iir: res.append(self.declaration_to_location(nodes.Get_Library_Unit(ent))) return res + def hover(self, doc_uri, position): + return self._docs[doc_uri].hover(position) + def x_show_all_files(self): res = [] for fe in range(1, files_map.Get_Last_Source_File_Entry() + 1): |