Skip to content

Commit 4739660

Browse files
committed
Auto merge of #17353 - roife:fix-issue-12728, r=Veykril
fix: incorrect formatting of hover actions fix #12728. ### Changes - Use ` | ` as the separator for actions. (I'm not sure why we use `___` previously) - Reorder actions to match codelens
2 parents 49dd2d3 + 8573eb2 commit 4739660

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools/rust-analyzer/crates/ide/src/hover.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,8 @@ pub(crate) fn hover_for_definition(
375375
HoverResult {
376376
markup: render::process_markup(sema.db, def, &markup, config),
377377
actions: [
378-
show_implementations_action(sema.db, def),
379378
show_fn_references_action(sema.db, def),
379+
show_implementations_action(sema.db, def),
380380
runnable_action(sema, def, file_id),
381381
goto_type_action_for_def(sema.db, def, &notable_traits),
382382
]

src/tools/rust-analyzer/editors/code/src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function renderHoverActions(actions: ra.CommandLinkGroup[]): vscode.MarkdownStri
6363
(group.title ? group.title + " " : "") +
6464
group.commands.map(renderCommand).join(" | "),
6565
)
66-
.join("___");
66+
.join(" | ");
6767

6868
const result = new vscode.MarkdownString(text);
6969
result.isTrusted = true;

0 commit comments

Comments
 (0)