1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-23 04:46:08 +02:00

Esacpe the list with ESC

This commit is contained in:
mo8it 2024-04-27 23:42:09 +02:00
parent c45d2c3255
commit 75e2804c83

View File

@ -42,7 +42,7 @@ pub fn list(app_state: &mut AppState) -> Result<()> {
ui_state.message.clear();
match key.code {
KeyCode::Char('q') => break,
KeyCode::Esc | KeyCode::Char('q') => break,
KeyCode::Down | KeyCode::Char('j') => ui_state.select_next(),
KeyCode::Up | KeyCode::Char('k') => ui_state.select_previous(),
KeyCode::Home | KeyCode::Char('g') => ui_state.select_first(),