Skip to content

Commit

Permalink
Merge branch 'siph-dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed May 8, 2022
2 parents c04c348 + d41c42a commit 77eb33c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/input_handler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ impl InputHandler {
SelectablePanel::Commands => locked_data.docker_command_end(),
}
}
KeyCode::Up => self.previous(),
KeyCode::Up | KeyCode::Char('k') => self.previous(),
KeyCode::PageUp => {
for _ in 0..=6 {
self.previous()
}
}
KeyCode::Down => self.next(),
KeyCode::Down | KeyCode::Char('j')=> self.next(),
KeyCode::PageDown => {
for _ in 0..=6 {
self.next()
Expand Down
2 changes: 1 addition & 1 deletion src/ui/draw_blocks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ pub fn draw_help_box<B: Backend>(f: &mut Frame<'_, B>) {
let description_text = format!("\n{}", DESCRIPTION);

let mut help_text = String::from("\n ( tab ) or ( alt+tab ) to change panels");
help_text.push_str("\n ( ↑ ↓ ← → ) to change selected line");
help_text.push_str("\n ( ↑ ↓ ← → ) or ( j k ) to change selected line");
help_text.push_str("\n ( enter ) to send docker container commands");
help_text.push_str("\n ( h ) to toggle this help information");
help_text.push_str(
Expand Down

0 comments on commit 77eb33c

Please sign in to comment.