5

This is a simple question, but I did not find an answer:

How can I change a read message to "unread" and how can I toggle the read state of a message?

bignose
  • 3,325
Rainer
  • 217
  • 1
  • 10

2 Answers2

8

Here's how to find the answer:

  • C-h i - open Info
  • m gnus RET - open the Gnus manual
  • i mark as unread RET - look up "mark as unread" in the index

This gives you:

`M c'
`M-u'
     Clear all readedness-marks from the current article
     (`gnus-summary-clear-mark-forward').  In other words, mark the
     article as unread.

Though you have the correct answer already, I just wanted to grab the opportunity to show that the Gnus manual is actually quite easy to access.

legoscia
  • 2,667
7

You can clear its mark by Mc or M-u.

Seki
  • 383