Regenerate standard/README.md - #167
Open
chrismessina wants to merge 1 commit into
Open
Conversation
Runs scripts/gen_theme_previews.py standard with no other changes. Adds the three soft_tactile_warp_* rows from warpdotdev#140, which were never regenerated after that merge, and updates the zenburn* row order to match the script's filename sort. All 136 preview SVGs regenerate byte-identically, so this commit touches only README.md. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
Housekeeping only — no theme changes. This is the output of running the repo's own script with nothing else touched:
All 136 preview SVGs regenerate byte-identically, so the commit touches only
standard/README.md.What changes
1. Three missing rows. The
soft_tactile_warp_{cream,dark,light}themes were added in #140, butREADME.mdwas never regenerated afterward — the files exist instandard/and appear zero times in the current table. This adds them.2.
zenburn*row order. The script sorts by filename, where_(0x5F) sorts after.(0x2E), sozenburn.yamlcomes first:The committed table has
zenburnlast, which is what you'd get sorting by display name instead. I've gone with the script's output since the README is generated, but if the current order is deliberate then the sort ingen_theme_previews.pyis what wants fixing — happy to flip this either way.3. Trailing newline. The script writes no final newline, so regenerating strips it. Called out in case that's unwanted; it's a one-line change to
main()if so.Why it's separate
Split out from #166 (which adds a theme) so that PR stays scoped to three files and a reviewer doesn't have to adjudicate someone else's rows to approve it. The two don't conflict, and either can merge first — whichever lands second will need a trivial rebase on the table.