aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorLaurențiu Nicola <[email protected]>2020-05-13 14:59:28 +0100
committerLaurențiu Nicola <[email protected]>2020-05-13 15:26:57 +0100
commit55e914a2a179aba63bd9948d6e0cf3e2a4bf5960 (patch)
tree57dc90891f1b5ea9f619ee72d39d24dea875f41e /crates
parenta84bd9e18c74e6a3080da1466cffe810de5e714d (diff)
Remove hidden VARIATION SELECTOR-16
Diffstat (limited to 'crates')
-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 be8688bc3..8d7baa14f 100644
--- a/crates/rust-analyzer/src/main_loop/handlers.rs
+++ b/crates/rust-analyzer/src/main_loop/handlers.rs
@@ -821,8 +821,8 @@ pub fn handle_code_lens(
821 // Gather runnables 821 // Gather runnables
822 for runnable in world.analysis().runnables(file_id)? { 822 for runnable in world.analysis().runnables(file_id)? {
823 let title = match &runnable.kind { 823 let title = match &runnable.kind {
824 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶\u{fe0e}Run Test", 824 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶\u{fe0e} Run Test",
825 RunnableKind::DocTest { .. } => "▶\u{fe0e}Run Doctest", 825 RunnableKind::DocTest { .. } => "▶\u{fe0e} Run Doctest",
826 RunnableKind::Bench { .. } => "Run Bench", 826 RunnableKind::Bench { .. } => "Run Bench",
827 RunnableKind::Bin => { 827 RunnableKind::Bin => {
828 // Do not suggest binary run on other target than binary 828 // Do not suggest binary run on other target than binary