mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 13:33:31 +00:00
Better label for a runnable.
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
parent
20fdd14c62
commit
51d5a08255
1 changed files with 1 additions and 1 deletions
|
@ -1020,7 +1020,7 @@ fn to_lsp_runnable(
|
||||||
RunnableKind::Bench { test_id } => format!("bench {}", test_id),
|
RunnableKind::Bench { test_id } => format!("bench {}", test_id),
|
||||||
RunnableKind::DocTest { test_id, .. } => format!("doctest {}", test_id),
|
RunnableKind::DocTest { test_id, .. } => format!("doctest {}", test_id),
|
||||||
RunnableKind::Bin => {
|
RunnableKind::Bin => {
|
||||||
target.map_or_else(|| "run binary".to_string(), |t| format!("run binary '{}'", t))
|
target.map_or_else(|| "run binary".to_string(), |t| format!("run {}", t))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
Ok(lsp_ext::Runnable {
|
Ok(lsp_ext::Runnable {
|
||||||
|
|
Loading…
Reference in a new issue