stop capturing r when environment selection modal is open (#6249)

This fixes an issue where you can't select environments with an r in them when the selection modal is open
This commit is contained in:
easong-openai
2025-11-05 13:23:46 -08:00
committed by GitHub
parent d7953aed74
commit d4eda9d10b
2 changed files with 4 additions and 18 deletions

View File

@@ -945,9 +945,7 @@ pub fn draw_env_modal(frame: &mut Frame, area: Rect, app: &mut App) {
// Subheader with usage hints (dim cyan)
let subheader = Paragraph::new(Line::from(
"Type to search, Enter select, Esc cancel; r refresh"
.cyan()
.dim(),
"Type to search, Enter select, Esc cancel".cyan().dim(),
))
.wrap(Wrap { trim: true });
frame.render_widget(subheader, rows[0]);