diff --git a/src/tui_app/app/events/event_types/event/handlers/command.rs b/src/tui_app/app/events/event_types/event/handlers/command.rs index 1672e96..554c91a 100644 --- a/src/tui_app/app/events/event_types/event/handlers/command.rs +++ b/src/tui_app/app/events/event_types/event/handlers/command.rs @@ -67,6 +67,14 @@ pub async fn handle( EventStatus::Terminate } + Command::DisplayOutput(output) => { + // TODO(@Soispha): This is only used to show the lua command output to the user. + // Lua commands already receive the output. This should probably be communicated + // better, should it? + send_status_output!(output); + EventStatus::Ok + } + Command::CommandLineShow => { app.ui.cli_enable(); send_status_output!("CLI online");