Skip to content

Commit 3e02349

Browse files
committed
Fix status bar messagen not being marked markdown
1 parent 5087af2 commit 3e02349

File tree

1 file changed

+1
-1
lines changed
  • src/tools/rust-analyzer/editors/code/src

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/editors/code/src/ctx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ export class Ctx implements RustAnalyzerExtensionApi {
446446
return;
447447
}
448448
if (status.message) {
449-
statusBar.tooltip.appendText(status.message);
449+
statusBar.tooltip.appendMarkdown(status.message);
450450
}
451451
if (statusBar.tooltip.value) {
452452
statusBar.tooltip.appendMarkdown("\n\n---\n\n");

0 commit comments

Comments
 (0)