mirror of
https://github.com/asciinema/asciinema.git
synced 2026-04-25 16:05:52 +03:00
[GH-ISSUE #651] Feature Request: support step_backward in asciinema cli play command #947
Labels
No labels
bug
compatibility
feature request
fit for beginners
help wanted
hosting
idea
improvement
packaging
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asciinema#947
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @xguo-prestolabs on GitHub (Sep 27, 2024).
Original GitHub issue: https://github.com/asciinema/asciinema/issues/651
Hi, all,
asciinema cli only support 4 key bindings,
I think we also need step_backward key, is there any reason for not adding support of this step_backward key?
Thanks.
@ku1ik commented on GitHub (Oct 20, 2024):
Yup. The way
asciinema playworks doesn't allow rewinding / step back. Step forward is easy because we just need to write the next output event to STDOUT. Step backward would need to run a virtual terminal emulator inside your actual terminal to be able to obtain screen contents for each (past) frame, and then redrawing the whole terminal view. In other words, while step forward was trivial to implement, step backward is hard (possible but a lot of work).@ku1ik commented on GitHub (Jun 23, 2025):
Not planned at the moment.