aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorQuan Luu <[email protected]>2020-02-12 17:17:35 +0000
committerQuan Luu <[email protected]>2020-02-13 08:09:39 +0000
commit409c1a7f069799839a677784685cd184e3551db1 (patch)
tree37be8fc595b65206990cc6263e2875974193c3e0 /crates
parent5e464d058b5043c663b0fe14bd9291c7b7b44d43 (diff)
prevent "Play" symbol in "Run Test" code lens from rendering as emoji
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 59c86bbfa..2e598fdcd 100644
--- a/crates/ra_lsp_server/src/main_loop/handlers.rs
+++ b/crates/ra_lsp_server/src/main_loop/handlers.rs
@@ -758,7 +758,7 @@ pub fn handle_code_lens(
758 // Gather runnables 758 // Gather runnables
759 for runnable in world.analysis().runnables(file_id)? { 759 for runnable in world.analysis().runnables(file_id)? {
760 let title = match &runnable.kind { 760 let title = match &runnable.kind {
761 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️Run Test", 761 RunnableKind::Test { .. } | RunnableKind::TestMod { .. } => "▶️\u{fe0e}Run Test",
762 RunnableKind::Bench { .. } => "Run Bench", 762 RunnableKind::Bench { .. } => "Run Bench",
763 RunnableKind::Bin => "Run", 763 RunnableKind::Bin => "Run",
764 } 764 }