-
I can't find a way to show only unread notifications |
Beta Was this translation helpful? Give feedback.
Answered by
tarsius
Mar 11, 2021
Replies: 1 comment 2 replies
-
The whole notification thing would need an overhaul, but it is not priority for a variety of reasons. Meanwhile you can do this: (with-eval-after-load 'magit
(fset 'forge--list-notifications-all
(symbol-function 'forge--list-notifications-unread))) To always list only the unread notifications, which might be what you want in the short-run because listing everything is so extremely slow. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
tarsius
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The whole notification thing would need an overhaul, but it is not priority for a variety of reasons.
Meanwhile you can do this:
To always list only the unread notifications, which might be what you want in the short-run because listing everything is so extremely slow.