mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-27 20:35:09 +00:00
Fix status bar messagen not being marked markdown
This commit is contained in:
parent
17055aaca9
commit
82141705b0
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||||
|
|
Loading…
Reference in a new issue