Fix status bar messagen not being marked markdown

This commit is contained in:
Lukas Wirth 2024-10-22 10:50:23 +02:00
parent 17055aaca9
commit 82141705b0

View file

@ -446,7 +446,7 @@ export class Ctx implements RustAnalyzerExtensionApi {
return; return;
} }
if (status.message) { if (status.message) {
statusBar.tooltip.appendText(status.message); statusBar.tooltip.appendMarkdown(status.message);
} }
if (statusBar.tooltip.value) { if (statusBar.tooltip.value) {
statusBar.tooltip.appendMarkdown("\n\n---\n\n"); statusBar.tooltip.appendMarkdown("\n\n---\n\n");