Skip to content

Commit 5aa8798

Browse files
committed
✨ can now change group also with backtab
1 parent 573f248 commit 5aa8798

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ Fast-SSH implements a search mode ( fuzzy ) that allows you to type to find one
4444
| ------------- | ------------- |
4545
| h | Display Shortcuts Panel |
4646
| Enter | Validate selection : Execute SSH cmd |
47-
| Tab/Left/Right| Navigate through your groups |
47+
| Tab/BackTab | Navigate through your groups |
48+
| Left/Right | Navigate through your groups |
4849
| Up/Down | Navigate through your hosts |
4950
| c | Switch Config display mode |
5051
| PageUp/Down | Scroll Configuration |

src/input_handler.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pub fn handle_inputs(app: &mut App) -> Result<(), Box<dyn std::error::Error>> {
1111

1212
match key.code {
1313
KeyCode::Tab => app.change_selected_group(true),
14+
KeyCode::BackTab => app.change_selected_group(false),
1415
KeyCode::Left => app.change_selected_group(false),
1516
KeyCode::Right => app.change_selected_group(true),
1617
KeyCode::Down => app.change_selected_item(true),

0 commit comments

Comments
 (0)