aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-13 18:15:31 +0100
committerGitHub <[email protected]>2020-05-13 18:15:31 +0100
commit530a35f3f949d70c53accede35fa561429585bc1 (patch)
treeabb0ed4636bff2a8d075a9045cfb099c67fbd794
parentc07050e2753a78e6975a6b78645970c18d7365b3 (diff)
parent55e914a2a179aba63bd9948d6e0cf3e2a4bf5960 (diff)
Merge #4447
4447: Remove VARIATION SELECTOR-16 in Run arrow r=matklad a=lnicola Closes #4446, cc @Veetaha. Co-authored-by: Laurențiu Nicola <[email protected]>
-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