Replies: 2 comments
|
if i understand right, you want glamour-style rendered output where idea has merit, especially for plan review. the simple version is workable. Add the proper version is harder. Rendering reflows lines: honestly, i'm not convinced the payoff is worth the complexity. Our current view isn't strictly a preview, but with chroma syntax highlighting it's already pretty close. Terminals are limited in how rich a "rendered" view can be: no font sizes for headings, no images, no actual bold beyond ANSI bold. The real delta is markup syntax ( curious what's actually hurting your scan. Is it the |
|
I built this as a local patch and it has been my daily plan-review path for about a week, so here is a data point on the question you asked — what is actually hurting the scan. You were right that hiding On the three complexity concerns, none of them had to be solved:
Gate is full-context markdown only, i.e. the whole file is present. A markdown file shown as a partial diff refuses to render, which avoids the question of what a reflowed fragment even means. The mermaid side was the bulk of the work, via Not proposing a PR — it is a personal patch and I am not asking you to carry it. Posting because you asked a question in this thread that deserved an answer, and because the annotation-anchoring blocker turned out to be avoidable rather than solvable. Branch is at https://github.com/p4elkin/revdiff/tree/md-preview if any of it is useful to you or to anyone reading this later. Example: Mermaid (not the best, but usually enough to get the gist) |




Uh oh!
There was an error while loading. Please reload this page.
Im testing revdiff as a Claude Code plugin using a hook workflow (similar to a Zed “plan review” hook I previously used via cc-things). I’ve noticed that large plans are hard to read in the current view, and they would be much easier to scan if they could be shown using Markdown preview rendering.
It might make sense to add a Markdown Preview mode, alongside (or next to) the existing Markdown TOC mode, to improve readability for long, structured plan output.
All reactions