From 0f0d35c0b52ea666fc2adae7ecbcf0d013152ec7 Mon Sep 17 00:00:00 2001 From: Brad Lewis <22850972+BradLewis@users.noreply.github.com> Date: Wed, 29 Oct 2025 00:08:24 -0400 Subject: Display hover information for untyped complex numbers and quaternions correctly --- src/server/documentation.odin | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/server/documentation.odin') diff --git a/src/server/documentation.odin b/src/server/documentation.odin index 42afe6e..c190837 100644 --- a/src/server/documentation.odin +++ b/src/server/documentation.odin @@ -445,6 +445,10 @@ write_short_signature :: proc(sb: ^strings.Builder, ast_context: ^AstContext, sy strings.write_string(sb, "bool") case .Integer: strings.write_string(sb, "int") + case .Complex: + strings.write_string(sb, "complex") + case .Quaternion: + strings.write_string(sb, "quaternion") } return } -- cgit v1.2.3