This commit is contained in:
Mikhail Kilin
2026-02-02 02:46:26 +03:00
parent 5c92c059c9
commit 9465f067fe
2 changed files with 10 additions and 11 deletions

View File

@@ -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) {
}
}
}