Hide read comments

16 points by iv


I sometimes want to hide comments I've already read so that it's easier for me to find the unread comments of a story I revisit. I made a bookmarklet for this:

document.querySelectorAll(".comment:not(:has(.comment_unread))").forEach((comment) => comment.style.display = "none")

Would this (with a better UX design) be an interesting feature for others?

natkr

Adjacently, I find the current unread tracking really stressful, mentally reinforcing this idea that opening the comments page requires me to read the whole comments section (or, especially that I have to read all the new ones when I come back). And that reloading the page by accident (these links are tiny on mobile!) loses all that state!

I don't know if I have a proposal for a better system… maybe having a manual button for "I've read until here, mark all comments above this one as read"?

dsr

Someday we'll get back all the features of Usenet read with slrn.

Forty-Bot

Unread comments are highlighted in red, so I don't have this problem.