We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ce3f6e commit 4d4e3ceCopy full SHA for 4d4e3ce
crates/openshell-tui/src/app.rs
@@ -1138,7 +1138,7 @@ impl App {
1138
self.policy_scroll = 0;
1139
}
1140
KeyCode::Char('q') => self.running = false,
1141
- KeyCode::Char('h') | KeyCode::Right => {
+ KeyCode::Char('h') | KeyCode::Left | KeyCode::Right => {
1142
self.sandbox_policy_tab = self.sandbox_policy_tab.next();
1143
1144
_ => {}
@@ -1154,7 +1154,7 @@ impl App {
1154
self.screen = Screen::Dashboard;
1155
self.focus = Focus::Sandboxes;
1156
1157
1158
1159
1160
KeyCode::Char('l') => {
0 commit comments