aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pearl-fetch-all-comments.el
Commit message (Collapse)AuthorAgeFilesLines
* feat(comments): fetch an issue's full comment threadCraig Jennings2026-06-051-0/+128
pearl-fetch-all-comments pages the whole comment connection for the issue at point and replaces its Comments subtree with the complete set. It's bound to C-; L f c and in the transient. The bulk list and view fetch showed only the newest pearl-list-comments-shown comments with an N/M+ overflow marker, so anything past the cap couldn't surface in the buffer. The replacement is surgical: pearl--replace-comments-subtree swaps only the Comments subtree, so the issue title, drawer, and description body keep any unsaved edits, and the new heading carries an exact N/N count. It refuses when the issue has unpushed comment edits (reusing the save model's dirty scanner) so the fetch can't clobber an unsent change.