mirror of
https://github.com/asciinema/asciinema.git
synced 2026-04-25 16:05:52 +03:00
[GH-ISSUE #57] Pause feature (in recording mode) #653
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#653
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 @eddyp on GitHub (Mar 28, 2014).
Original GitHub issue: https://github.com/asciinema/asciinema/issues/57
It would be really useful to be able to pause and continue the asciinema recording process at any time. This is useful for outside interruptions, a long series of commands or executions.
I think one way to do this would be to use ctrl+z for pause and fg to get back to the session.
@ku1ik commented on GitHub (Mar 28, 2014):
That is impossible due to the way recording is done. asciinema recorder doesn't do a snapshot of the whole terminal (all the lines), it only records the text and escape codes that get printed to the terminal. It's a sequence of changes where the following ones are dependent on the previous ones. By stopping the recording we would lose some of the changes that would be required to correctly display any future changes.
@eddyp commented on GitHub (Mar 30, 2014):
Then could there be an edit function of the resulting recording to be able to trim on the dead times during the recording?
@ku1ik commented on GitHub (Mar 31, 2014):
Yes, the ability to edit recorded asciicasts is in plans, see #49.