Merge #2: Add --color flag to preserve ANSI escape sequences (with debounce fix)#6
Merged
Conversation
…wait output tui-use strips all color and style information from terminal output, which is documented as a known limitation. This adds an opt-in --color flag to the snapshot and wait commands that re-encodes xterm buffer cell attributes back into ANSI SGR escape sequences. Supports the full range of terminal styling: 8/16/256-color palette, 24-bit RGB, bold, dim, italic, underline, blink, inverse, and strikethrough. Default behavior is unchanged — plain text unless --color is specified. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add --color flag to preserve ANSI escape sequences in snapshot/wait output. Conflicts resolved: - Retained debounce_ms parameter in WaitRequest (was removed in phiat branch) - Combined both features: debounce and color are now both supported - Updated wait() signature to accept both debounceMs and color options Co-Authored-By: phiat
Owner
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Merge PR #2 (phiat/feat/ansi-color-passthrough) with conflict resolution.
Changes
--colorflag tosnapshotandwaitcommands--debouncefunctionality that was accidentally removed in original PRConflict Resolution
The original PR removed the
debounce_msparameter. This merge restores it,allowing both
--colorand--debounceto work together:Testing
Credit
Original implementation by @phiat in #2.