From 63ffc1773399129b936cdabba241923725ba7553 Mon Sep 17 00:00:00 2001 From: Aaron Loucks Date: Tue, 19 May 2020 20:29:49 -0400 Subject: Use a flat play icon instead of the blue emoji with test code lens --- crates/rust-analyzer/src/main_loop/handlers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/rust-analyzer/src/main_loop/handlers.rs b/crates/rust-analyzer/src/main_loop/handlers.rs index 4ff8fa69e..be6a0aece 100644 --- a/crates/rust-analyzer/src/main_loop/handlers.rs +++ b/crates/rust-analyzer/src/main_loop/handlers.rs @@ -802,11 +802,11 @@ pub fn handle_code_lens( for runnable in world.analysis().runnables(file_id)? { let (run_title, debugee) = match &runnable.kind { RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => { - ("▶️\u{fe0e}Run Test", true) + ("▶\u{fe0e} Run Test", true) } RunnableKind::DocTest { .. } => { // cargo does not support -no-run for doctests - ("▶️\u{fe0e}Run Doctest", false) + ("▶\u{fe0e} Run Doctest", false) } RunnableKind::Bench { .. } => { // Nothing wrong with bench debugging -- cgit v1.2.3