aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Loucks <[email protected]>2020-05-20 01:29:49 +0100
committerAaron Loucks <[email protected]>2020-05-20 01:29:49 +0100
commit63ffc1773399129b936cdabba241923725ba7553 (patch)
tree17c6fc5e35c5d9240ee1c025f202637ea0d5e880
parentefac093093f1bd598957822e9e859b33c5f13e1f (diff)
Use a flat play icon instead of the blue emoji with test code lens
-rw-r--r--crates/rust-analyzer/src/main_loop/handlers.rs4
1 files 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(
802 for runnable in world.analysis().runnables(file_id)? { 802 for runnable in world.analysis().runnables(file_id)? {
803 let (run_title, debugee) = match &runnable.kind { 803 let (run_title, debugee) = match &runnable.kind {
804 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => { 804 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => {
805 ("▶\u{fe0e}Run Test", true) 805 ("▶\u{fe0e} Run Test", true)
806 } 806 }
807 RunnableKind::DocTest { .. } => { 807 RunnableKind::DocTest { .. } => {
808 // cargo does not support -no-run for doctests 808 // cargo does not support -no-run for doctests
809 ("▶\u{fe0e}Run Doctest", false) 809 ("▶\u{fe0e} Run Doctest", false)
810 } 810 }
811 RunnableKind::Bench { .. } => { 811 RunnableKind::Bench { .. } => {
812 // Nothing wrong with bench debugging 812 // Nothing wrong with bench debugging