Add forecast support
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
f719983c62
commit
2c2246ae00
4 changed files with 90 additions and 41 deletions
|
@ -45,6 +45,14 @@ fn main() {
|
|||
code: event::KeyCode::Right,
|
||||
..
|
||||
}) => app.next_tab(),
|
||||
event::Event::Key(event::KeyEvent {
|
||||
code: event::KeyCode::Up,
|
||||
..
|
||||
}) => app.prev_item(),
|
||||
event::Event::Key(event::KeyEvent {
|
||||
code: event::KeyCode::Down,
|
||||
..
|
||||
}) => app.next_item(),
|
||||
event::Event::Key(event::KeyEvent {
|
||||
code: event::KeyCode::Char(c),
|
||||
..
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue