diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-27 21:19:02 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-27 21:53:39 -0400 |
| commit | c8630395d0c3314c356db0cc40b4b79904909c6d (patch) | |
| tree | 0bc1535342af07c6b50ba1b60ea6b2f62d797d80 /src/server/hover.odin | |
| parent | 9bc4a0362e74c0d5f1ea10459fa9d7cb24d0ac9d (diff) | |
Improve completion struct information
Diffstat (limited to 'src/server/hover.odin')
| -rw-r--r-- | src/server/hover.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/hover.odin b/src/server/hover.odin index f8b73e9..52663a8 100644 --- a/src/server/hover.odin +++ b/src/server/hover.odin @@ -144,7 +144,7 @@ get_hover_information :: proc(document: ^Document, position: common.Position) -> } } - symbol.signature = get_signature(&ast_context, symbol) + symbol.signature = get_short_signature(&ast_context, symbol) hover.contents = write_hover_content(&ast_context, symbol) return hover, true, true } |