Skip to content

Commit eb791f3

Browse files
committed
Auto merge of rust-lang#14385 - x2cf:master, r=HKalbasi
Fix VS Code status message formatting error
2 parents 3321799 + 9745a25 commit eb791f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/ctx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ export class Ctx {
383383
);
384384
statusBar.tooltip.appendMarkdown("\n\n[Open logs](command:rust-analyzer.openLogs)");
385385
statusBar.tooltip.appendMarkdown("\n\n[Restart server](command:rust-analyzer.startServer)");
386-
statusBar.tooltip.appendMarkdown("[Stop server](command:rust-analyzer.stopServer)");
386+
statusBar.tooltip.appendMarkdown("\n\n[Stop server](command:rust-analyzer.stopServer)");
387387
if (!status.quiescent) icon = "$(sync~spin) ";
388388
statusBar.text = `${icon}rust-analyzer`;
389389
}

0 commit comments

Comments
 (0)