Skip to content

Commit

Permalink
Fix status bar messagen not being marked markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Veykril committed Oct 22, 2024
1 parent 5087af2 commit 3e02349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/rust-analyzer/editors/code/src/ctx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ export class Ctx implements RustAnalyzerExtensionApi {
return;
}
if (status.message) {
statusBar.tooltip.appendText(status.message);
statusBar.tooltip.appendMarkdown(status.message);
}
if (statusBar.tooltip.value) {
statusBar.tooltip.appendMarkdown("\n\n---\n\n");
Expand Down

0 comments on commit 3e02349

Please sign in to comment.