fix(tui): replace stream badge glyph U+26A1 with plain » - #116
Merged
Conversation
The ⚡ stream badge (U+26A1) is East-Asian-ambiguous and emoji-presentation-capable, so several terminals mis-width or mis-paint it inside styled runs: the badge bytes are emitted (visible when copied) but never painted on screen. Swap to » (U+00BB), single-cell everywhere, in the header badge, cockpit stream row, and /server link row; update the affected tests and README.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
bodek | 22e1fbe | Commit Preview URL Branch Preview URL |
Sep 12 2026, 03:24 PM |
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.
What
The ⚡ stream badge (U+26A1) never painted on screen in some terminals while its bytes were verifiably emitted (clipboard contained it; a plain printf ⚡ rendered fine). U+26A1 is East-Asian-ambiguous and emoji-presentation-capable — the exact glyph class that mis-widths or mis-paints inside styled runs.
Swapped to
»(U+00BB, single-cell everywhere) in:view.go)streamrow (cockpit.go)/serverlink row (commands.go— caught by expert review, initial swap missed it)spec_v2_test.go,cockpit_test.go) and READMEThe latency-stat ⚡ (
statTime) and the odek-banner-matching ⚡ ininternal/serverare deliberately untouched: different surface / external protocol.Verification
make fmt/make vet/make lint— 0 issuesmake test— full race suite green