feat: word-wrapped markdown preview toggle in the TUI editor (issue #26)

This commit is contained in:
2026-07-15 19:28:10 +02:00
parent c77686250e
commit 01b90e00a0
10 changed files with 338 additions and 241 deletions

View File

@@ -46,6 +46,14 @@ rule SaveAndPublish {
ensures: PostPersisted()
}
rule WrappedPreview {
when: TuiKeyPressed(code: "e", modifiers: "ctrl")
-- The editing textarea cannot soft-wrap (upstream ratatui-textarea
-- limitation), so ctrl+e toggles a read-only word-wrapped Markdown
-- preview of the current draft; keys in preview never edit content.
ensures: PreviewToggled()
}
rule AiQuickAction {
when: TuiKeyPressed(code: "g", modifiers: "ctrl")
-- One-shot AI post analysis (title/excerpt suggestions). Gated by