Show tab queue hint in footer (#9138)

- show the Tab queue hint in the footer when a task is running with
Steer enabled
- drop the history queue hint and add footer snapshots
This commit is contained in:
Ahmed Ibrahim
2026-01-13 00:32:53 -08:00
committed by GitHub
parent 3c8fb90bf0
commit 17ab5f6a52
12 changed files with 184 additions and 32 deletions

View File

@@ -2152,17 +2152,6 @@ impl ChatWidget {
self.add_to_history(history_cell::new_user_prompt(text));
}
// If steer is enabled and a task is running, show hint about queuing with Tab
if self.config.features.enabled(Feature::Steer) && self.bottom_pane.is_task_running() {
use crate::key_hint;
use ratatui::text::Line;
let hint_line = Line::from(vec![
"You can queue messages by pressing ".dim(),
key_hint::plain(KeyCode::Tab).into(),
]);
self.add_to_history(history_cell::PlainHistoryCell::new(vec![hint_line]));
}
self.needs_final_message_separator = false;
}