Skip to content

Commit 409c1a7

Browse files
committed
prevent "Play" symbol in "Run Test" code lens from rendering as emoji
1 parent 5e464d0 commit 409c1a7

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)