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>
This commit is contained in:
Koni Marti 2022-10-03 23:56:07 +02:00 committed by Robin Jarry
parent e4d418eed1
commit d3b62dd3b0
6 changed files with 32 additions and 8 deletions
commands

View file

@ -5,6 +5,7 @@ import (
"git.sr.ht/~rjarry/aerc/lib"
"git.sr.ht/~rjarry/aerc/widgets"
"git.sr.ht/~sircmpwn/getopt"
)
type ViewMessage struct{}
@ -22,8 +23,20 @@ func (ViewMessage) Complete(aerc *widgets.Aerc, args []string) []string {
}
func (ViewMessage) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: view-message")
peek := false
opts, optind, err := getopt.Getopts(args, "p")
if err != nil {
return err
}
for _, opt := range opts {
if opt.Option == 'p' {
peek = true
}
}
if len(args) != optind {
return errors.New("Usage: view-message [-p]")
}
acct := aerc.SelectedAccount()
if acct == nil {
@ -45,7 +58,7 @@ func (ViewMessage) Execute(aerc *widgets.Aerc, args []string) error {
aerc.PushError(msg.Error.Error())
return nil
}
lib.NewMessageStoreView(msg, acct.UiConfig().AutoMarkRead,
lib.NewMessageStoreView(msg, !peek && acct.UiConfig().AutoMarkRead,
store, aerc.Crypto, aerc.DecryptKeys,
func(view lib.MessageView, err error) {
if err != nil {

View file

@ -120,7 +120,7 @@ func (Archive) 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 {

View file

@ -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 {

View file

@ -42,7 +42,7 @@ func (NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
aerc.RemoveTab(mv)
return nil
}
lib.NewMessageStoreView(nextMsg, acct.UiConfig().AutoMarkRead,
lib.NewMessageStoreView(nextMsg, mv.MessageView().SeenFlagSet(),
store, aerc.Crypto, aerc.DecryptKeys,
func(view lib.MessageView, err error) {
if err != nil {