diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-06-10 20:22:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-10 20:22:27 +0200 |
| commit | e4ba6606fb75e964e360bf22fdfd0641f169497a (patch) | |
| tree | e1327c7bd089edab3c843b1578b1b2a679eb97d9 /src/server/completion.odin | |
| parent | a42400e0c9f1471ec27454476f6fe6c19dc95242 (diff) | |
| parent | cea7502466e9a413d1b8980b6447c9316f03a93a (diff) | |
Merge pull request #650 from BradLewis/feat/hover-struct-definitions
Enrich hover information
Diffstat (limited to 'src/server/completion.odin')
| -rw-r--r-- | src/server/completion.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin index 8d61e3e..57d289d 100644 --- a/src/server/completion.odin +++ b/src/server/completion.odin @@ -1289,7 +1289,7 @@ get_identifier_completion :: proc( ident.name = k if symbol, ok := resolve_type_identifier(ast_context, ident^); ok { - symbol.signature = get_signature(ast_context, ident^, symbol) + symbol.signature = get_signature(ast_context, ident, symbol, short_signature=true) build_procedure_symbol_signature(&symbol) @@ -1330,7 +1330,7 @@ get_identifier_completion :: proc( ident.name = k if symbol, ok := resolve_type_identifier(ast_context, ident^); ok { - symbol.signature = get_signature(ast_context, ident^, symbol) + symbol.signature = get_signature(ast_context, ident, symbol, short_signature=true) build_procedure_symbol_signature(&symbol) |