Skip to content

Commit

Permalink
tasks: for formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed Sep 24, 2024
1 parent 10eba31 commit 4880780
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devenv/src/tasks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ impl TasksUi {

let output = style::PrintStyledContent(
format!(
"{}\n{} {:>width$}\n",
"{}\n{:width$} {}\n",
tasks_status.lines.join("\n"),
[
if tasks_status.pending > 0 {
Expand Down Expand Up @@ -741,7 +741,7 @@ impl TasksUi {
.collect::<Vec<_>>()
.join(", "),
format!("{:.2?}", started.elapsed()),
width = self.tasks.longest_task_name + 15
width = self.tasks.longest_task_name + 36
)
.stylize(),
);
Expand Down

0 comments on commit 4880780

Please sign in to comment.