mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-22 04:33:22 +03:00
fix(screen): send PaneClosed event to plugins also when closing the whole tab
This commit is contained in:
parent
42dfc3c891
commit
b0bae7ccd9
@ -1081,6 +1081,14 @@ impl Screen {
|
||||
pane_ids.retain(|p| p != suppressed_pane_id);
|
||||
}
|
||||
|
||||
let _ = self.bus.senders.send_to_plugin(PluginInstruction::Update(
|
||||
pane_ids
|
||||
.iter()
|
||||
.copied()
|
||||
.map(|p_id| (None, None, Event::PaneClosed(p_id.into())))
|
||||
.collect(),
|
||||
));
|
||||
|
||||
// below we don't check the result of sending the CloseTab instruction to the pty thread
|
||||
// because this might be happening when the app is closing, at which point the pty thread
|
||||
// has already closed and this would result in an error
|
||||
|
Loading…
Reference in New Issue
Block a user