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/read.go') 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 1.4.1-2-gfad0 log/themes/original'>log tree commit diff stats
path: root/themes/original
blob: 33e54fb3a0987df5681c77167a29d742a1a654be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77