Conversation
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Resolve conflicts preserving both main's inline-edit/cursor feature and the mermaid renderer + file-finder fixes: - Version: 0.1.5 - PagerInput / Terminal+Keys: keep main's edit/cursor/Ctrl-S handling; finder Ctrl-C-vs-"c" fix retained (0x03 -> .other) - KeyParserTests: keep both the Ctrl-C and Shift-arrow/Ctrl-S decoder tests - CHANGELOG: new [0.1.5] section (mermaid + complete-box + finder fix) above [0.1.4] - README: intro now mentions Mermaid rendering; Credits note it is inspired by and ported from mermaid-ascii - justfile: add `linux-build` (Swift 6.2 container build+test) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The serial swift-corelibs-xctest runner blocks on a ppoll when stdin is not a TTY (non-interactive container), so `swift test` never completes under Docker. The parallel runner spawns a process per test and is unaffected. Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Summary
Adds native Mermaid diagram rendering, fixes a file-finder bug, and bumps the version to 0.1.5. Merged on top of
main(v0.1.4), preserving the inline-edit/cursor feature.Added — Mermaid diagrams
```mermaidfenced blocks now render as ASCII/Unicode art instead of plain source: flowcharts (graph/flowchartTD/LR with labeled, chained & grouped edges,subgraph,classDef) andsequenceDiagram.MermaidRenderermodule — no external binary. Unsupported diagram types / parse errors fall back to the highlighted code block.mermaid(on/off) andmermaid-charset(unicode/ascii).[…]/"…"labels aren't treated as syntax;classDefspaced-style parsing; display-width-safe sequence rendering.Changed
Fixed — file finder
q/Q/cno longer quits the app (andj/k/g/Gno longer move the selection instead of typing). Filtering is now modal: press/to focus the search box, where every printable key types; list/navigation keys work outside it.c(it is delivered asSIGINT).Docs / tooling
[0.1.5]section added above[0.1.4].just linux-buildrecipe: build + test in a Swift 6.2 container.Testing
just checkgreen — SwiftFormat + SwiftLint (strict) clean, all tests pass (incl. 99 byte-exact mermaid-ascii goldens).swift:6.2,aarch64): builds andswift test --parallelpasses. (The serial XCTest runner hangs on a no-TTYppoll— a pre-existing swift-corelibs-xctest quirk unrelated to this change — so the recipe uses--parallel.)🤖 Generated with Claude Code