Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Nov 21, 2024
1 parent 29d3f32 commit c3381ed
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion crates/turborepo-ui/src/tui/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ fn translate_key_event(options: InputOptions, key_event: KeyEvent) -> Option<Eve
KeyCode::Up => Some(Event::Up),
KeyCode::Down => Some(Event::Down),
KeyCode::Enter => Some(Event::EnterInteractive),
KeyCode::Char('i') => Some(Event::EnterInteractive),
_ => None,
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo-ui/src/tui/pane.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use tui_term::widget::PseudoTerminal;
use super::{app::LayoutSections, TerminalOutput};

const FOOTER_TEXT_ACTIVE: &str = "Ctrl-z - Stop interacting";
const FOOTER_TEXT_INACTIVE: &str = "i - Interact";
const FOOTER_TEXT_INACTIVE: &str = "Enter - Interact";
const HAS_SELECTION: &str = "c - Copy selection";
const TASK_LIST_HIDDEN: &str = "h - Show task list";

Expand Down

0 comments on commit c3381ed

Please sign in to comment.