Three TUI bugs squashed in this patch release — the interactive board is now more reliable on smaller terminals and the detail view is fully usable for tasks with long descriptions.
Fixed: Detail view scrolling
Previously, opening a task with a long body in the TUI would dump all content at once, showing the bottom of the file with no way to scroll. The detail view now starts at the top and supports vim-style scrolling: j/k to scroll line-by-line, g/G to jump to top/bottom.
# Open the TUI and press enter on any task to see the detail view
kanban-md-tui
# j/k to scroll, q/esc to go backFixed: Long lines in detail view now wrap
Task bodies with long lines (e.g. URLs, log output) previously extended beyond the terminal width, breaking the layout. Lines now word-wrap to fit the terminal.
Fixed: Column headers no longer disappear when scrolling
On smaller terminals (e.g. 80x24), scrolling through a column with many tasks could push the column header off-screen because the scroll indicators ("↑ N more" / "↓ N more") weren't accounted for in the height budget. The visible card count now adjusts for indicator lines, keeping headers visible at all terminal sizes.
Upgrading
No action needed — just update to v0.18.1. go install github.com/antopolskiy/kanban-md/cmd/kanban-md-tui@v0.18.1 or download the binary from the release assets.
Full diff: v0.18.0...v0.18.1