mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 05:23:24 +00:00
Use "▶" for test code lens
I find that this makes code lenses stand out more.
This commit is contained in:
parent
28fdb8d03c
commit
57899d66fa
1 changed files with 1 additions and 1 deletions
|
@ -618,7 +618,7 @@ pub fn handle_code_lens(
|
|||
|
||||
for runnable in world.analysis().runnables(file_id)? {
|
||||
let title = match &runnable.kind {
|
||||
RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("Run Test"),
|
||||
RunnableKind::Test { name: _ } | RunnableKind::TestMod { path: _ } => Some("▶️Run Test"),
|
||||
RunnableKind::Bench { name: _ } => Some("Run Bench"),
|
||||
_ => None,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue