aboutsummaryrefslogtreecommitdiffstats
path: root/commands/msg/delete.go
diff options
context:
space:
mode:
authorKoni Marti <koni.marti@gmail.com>2022-10-03 23:56:07 +0200
committerRobin Jarry <robin@jarry.cc>2022-10-04 09:44:04 +0200
commitd3b62dd3b0fe6f5f1fb52e4fa9247cf9b27cbb3c (patch)
tree4bed5ce3176282ae72664b31bb1f33d75f76ba76 /commands/msg/delete.go
parente4d418eed15858d6dcae70e73b8a6c3e4439b5bc (diff)
downloadaerc-d3b62dd3b0fe6f5f1fb52e4fa9247cf9b27cbb3c.tar.gz
view: add peek flag and propagate
Add a peek flag -p to the view commands to open the message viewer without setting the "seen" flag. If the flag is set, it would ignore the "auto-mark-read" config. The SetSeen flag will be propagated in case the message viewer moves on to other messages, i.e. with the delete or archive commands. Signed-off-by: Koni Marti <koni.marti@gmail.com> Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/msg/delete.go')
-rw-r--r--commands/msg/delete.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msg/delete.go b/commands/msg/delete.go
index 57cef34d..a3d024a7 100644
--- a/commands/msg/delete.go
+++ b/commands/msg/delete.go
@@ -63,7 +63,7 @@ func (Delete) Execute(aerc *widgets.Aerc, args []string) error {
acct.Messages().Invalidate()
return
}
- lib.NewMessageStoreView(next, acct.UiConfig().AutoMarkRead,
+ lib.NewMessageStoreView(next, mv.MessageView().SeenFlagSet(),
store, aerc.Crypto, aerc.DecryptKeys,
func(view lib.MessageView, err error) {
if err != nil {