From 409c1a7f069799839a677784685cd184e3551db1 Mon Sep 17 00:00:00 2001 From: Quan Luu Date: Thu, 13 Feb 2020 00:17:35 +0700 Subject: prevent "Play" symbol in "Run Test" code lens from rendering as emoji --- crates/ra_lsp_server/src/main_loop/handlers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 59c86bbfa..2e598fdcd 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs @@ -758,7 +758,7 @@ pub fn handle_code_lens( // Gather runnables for runnable in world.analysis().runnables(file_id)? { let title = match &runnable.kind { - RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️Run Test", + RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️\u{fe0e}Run Test", RunnableKind::Bench { .. } => "Run Bench", RunnableKind::Bin => "Run", } -- cgit v1.2.3