fix: incorrect formatting of hover actions

This commit is contained in:
roife 2024-06-06 21:07:59 +08:00
parent af488c971f
commit 4a4b13cbda
2 changed files with 2 additions and 2 deletions

View file

@ -63,7 +63,7 @@ function renderHoverActions(actions: ra.CommandLinkGroup[]): vscode.MarkdownStri
(group.title ? group.title + " " : "") +
group.commands.map(renderCommand).join(" | "),
)
.join("___");
.join(" | ");
const result = new vscode.MarkdownString(text);
result.isTrusted = true;