Merge main into senekor/soqukxyvzplr

This commit is contained in:
Remo Senekowitsch 2026-04-25 14:07:17 +02:00
commit 4c4dd20be3
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ fn handle_list(app_state: &mut AppState, stdout: &mut StdoutLock) -> Result<()>
}
}
KeyCode::Char('r') => list_state.reset_selected()?,
KeyCode::Char('c') => {
KeyCode::Char('c') | KeyCode::Enter => {
if list_state.selected_to_current_exercise()? {
return Ok(());
}

View File

@ -245,7 +245,7 @@ impl<'a> ListState<'a> {
hotkey(&mut writer, b"g")?;
writer.write_ascii(b" end/")?;
hotkey(&mut writer, b"G")?;
writer.write_ascii(b" | ")?;
writer.write_str(" | ↩️/")?;
hotkey(&mut writer, b"c")?;
writer.write_ascii(b"ontinue at | ")?;
hotkey(&mut writer, b"r")?;