Skip to content

Commit 39abac8

Browse files
bors[bot]quanlou
andauthored
Merge #3126
3126: prevent "Play" symbol in "Run Test" code lens from rendering as emoji r=matklad a=quanlou for #3091 Co-authored-by: Quan Luu <[email protected]>
2 parents 5e464d0 + 409c1a7 commit 39abac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ra_lsp_server/src/main_loop/handlers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ pub fn handle_code_lens(
758758
// Gather runnables
759759
for runnable in world.analysis().runnables(file_id)? {
760760
let title = match &runnable.kind {
761-
RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️Run Test",
761+
RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶\u{fe0e}Run Test",
762762
RunnableKind::Bench { .. } => "Run Bench",
763763
RunnableKind::Bin => "Run",
764764
}

0 commit comments

Comments
 (0)