From 6271d455eb7d72ca2942e3721721be54fed27779 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 9 Jun 2019 14:55:34 -0400 Subject: Add :read and :unread commands --- commands/msg/read.go | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 commands/msg/read.go (limited to 'commands/msg') diff --git a/commands/msg/read.go b/commands/msg/read.go new file mode 100644 index 0000000..9844797 --- /dev/null +++ b/commands/msg/read.go @@ -0,0 +1,38 @@ +package msg + +import ( + "errors" + "time" + + "github.com/gdamore/tcell" + + "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~sircmpwn/aerc/worker/types" +) + +func init() { + register("read", Read) + register("unread", Read) +} + +func Read(aerc *widgets.Aerc, args []string) error { + if len(args) != 1 { + return errors.New("Usage: " + args[0]) + } + + widget := aerc.SelectedTab().(widgets.ProvidesMessage) + msg := widget.SelectedMessage() + store := widget.Store() + store.Read([]uint32{msg.Uid}, args[0] == "read", func( + msg types.WorkerMessage) { + + switch msg := msg.(type) { + case *types.Done: + aerc.PushStatus("Messages updated.", 10*time.Second) + case *types.Error: + aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second). + Color(tcell.ColorDefault, tcell.ColorRed) + } + }) + return nil +} -- cgit v1.2.3