commit
This commit is contained in:
@@ -939,10 +939,10 @@ pub async fn handle(app: &mut App, key: KeyEvent) {
|
||||
} else {
|
||||
// В режиме списка чатов - навигация стрелками и переключение папок
|
||||
match key.code {
|
||||
KeyCode::Down => {
|
||||
KeyCode::Down | KeyCode::Char('j') | KeyCode::Char('о') => {
|
||||
app.next_chat();
|
||||
}
|
||||
KeyCode::Up => {
|
||||
KeyCode::Up | KeyCode::Char('k') | KeyCode::Char('ц') => {
|
||||
app.previous_chat();
|
||||
}
|
||||
// Цифры 1-9 - переключение папок
|
||||
@@ -972,4 +972,3 @@ pub async fn handle(app: &mut App, key: KeyEvent) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user