aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorJeremy Kolb <[email protected]>2019-01-31 03:09:27 +0000
committerJeremy Kolb <[email protected]>2019-01-31 03:09:27 +0000
commit57899d66fa76f9d8d5ba64c3267cc34a94007e7f (patch)
treec738365de9e3cbb58fc5c48b6be9bdbd6dc6f4c1 /crates
parent28fdb8d03caf1ab8b40ed0fcbe8e47451fe030d9 (diff)
Use "▶" for test code lens
I find that this makes code lenses stand out more.
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs
index 74554f15c..2a16d37b5 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -618,7 +618,7 @@ pub fn handle_code_lens(
618 618
619 for runnable in world.analysis().runnables(file_id)? { 619 for runnable in world.analysis().runnables(file_id)? {
620 let title = match &runnable.kind { 620 let title = match &runnable.kind {
621 RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("Run Test"), 621 RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("▶️Run Test"),
622 RunnableKind::Bench { name: _ } => Some("Run Bench"), 622 RunnableKind::Bench { name: _ } => Some("Run Bench"),
623 _ => None, 623 _ => None,
624 }; 624 };