diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/rust-analyzer/src/main_loop/handlers.rs | 4 |
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 |