diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-25 09:17:22 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-25 17:47:16 -0400 |
| commit | 9bbb4b4450b5310a68aa4497a3125674452037d7 (patch) | |
| tree | b5f1dad8a8277d613dd1b00938b8a73f49713134 /src/server/hover.odin | |
| parent | 344eea71fbf1863106bc051dbae11534e7dcca74 (diff) | |
Add proc comments to hover 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 dd4af97..e69249b 100644 --- a/src/server/hover.odin +++ b/src/server/hover.odin @@ -40,7 +40,7 @@ write_hover_content :: proc(ast_context: ^AstContext, symbol: Symbol) -> MarkupC if cat != "" { content.kind = "markdown" - content.value = fmt.tprintf("```odin\n%v\n```\n%v", cat, symbol.doc) + content.value = fmt.tprintf("```odin\n%v\n```%v", cat, symbol.doc) } else { content.kind = "plaintext" } |