mirror of
https://github.com/figsoda/mmtc
synced 2025-02-16 13:28:33 +00:00
remove redundant key bindings
This commit is contained in:
parent
2c54224a86
commit
f76de8ce7b
1 changed files with 3 additions and 3 deletions
|
@ -305,9 +305,9 @@ async fn run() -> Result<()> {
|
|||
KeyCode::Enter => Command::Play,
|
||||
KeyCode::Char(' ') => Command::Reselect,
|
||||
KeyCode::Char('j') => Command::Down,
|
||||
KeyCode::Char('k') | KeyCode::Up => Command::Up,
|
||||
KeyCode::Char('J') | KeyCode::PageDown => Command::JumpDown,
|
||||
KeyCode::Char('K') | KeyCode::PageUp => Command::JumpUp,
|
||||
KeyCode::Char('k') => Command::Up,
|
||||
KeyCode::Char('J') => Command::JumpDown,
|
||||
KeyCode::Char('K') => Command::JumpUp,
|
||||
KeyCode::Char('/') => {
|
||||
searching = true;
|
||||
Command::Searching(true)
|
||||
|
|
Loading…
Add table
Reference in a new issue