From 4086fc1f83673554f9b9695e853c44dd895add23 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 11 Jan 2022 00:10:56 -0500 Subject: highlight the specific pipeline that is currently running --- src/shell/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/shell/mod.rs') diff --git a/src/shell/mod.rs b/src/shell/mod.rs index 629f482..7371933 100644 --- a/src/shell/mod.rs +++ b/src/shell/mod.rs @@ -289,6 +289,9 @@ impl Shell { } } } + Event::ChildRunPipeline(idx, span) => { + self.history.entry(idx).await.set_span(span); + } Event::ChildSuspend(idx) => { if self.focus_idx() == Some(idx) { self.set_focus(Focus::Readline, None).await; -- cgit v1.2.3-54-g00ecf