about summary refs log tree commit diff stats
path: root/widgets/aerc.go
Commit message (Expand)AuthorAgeFilesLines
* Use aerc.PushError where appropriateBen Fiedler2020-04-231-6/+3
* Add pinned tabsJeffas2020-03-091-1/+9
* Reduce size of the password prompt UIDrew DeVault2020-03-031-2/+2
* Initial support for PGP decryption & signaturesDrew DeVault2020-03-031-0/+48
* Add move-tab commandJeffas2020-03-031-0/+12
* create OriginalMail structLeszek CimaƂa2020-01-091-1/+2
* Show textinput completions in popoversBen Burwell2019-12-211-2/+2
* Add UI options to save/pipe messages with unsupported mimetypesGreg Anders2019-11-171-3/+3
* Add Templates with ParsingSrivathsan Murali2019-11-101-2/+5
* Fix selected account to return for messageviewerJeffas2019-10-021-4/+6
* widgets: remove duplicate importWagner Riffel2019-09-121-18/+17
* Add signaturesJeffas2019-09-121-1/+1
* Add MouseableJeffas2019-09-111-14/+27
* all: purge redundant underscoresWagner Riffel2019-09-041-1/+1
* Add :prompt commandChristopher Vittal2019-08-261-2/+32
* Revert "add close command at global level"Drew DeVault2019-08-131-8/+0
* add close command at global levelAditya Srivastava2019-08-131-0/+8
* Close backends prior to shutdownReto Brunner2019-08-081-0/+19
* Ring bell when new messages arrive 0.2.0Ben Burwell2019-07-291-0/+15
* Add index option to change-tabJeffas2019-07-271-0/+10
* Add command history and cyclingGalen Abell2019-07-261-2/+11
* Support configurable header layout in compose widgetDaniel Bridges2019-07-261-2/+2
* Add new-email triggerJeffas2019-07-261-3/+10
* Add change tab commandJeffas2019-07-231-0/+22
* Add Unix socket for communicating with aercDrew DeVault2019-07-191-0/+40
* Show currently pressed keys in statuslineJeffas2019-07-171-0/+3
* Add clickable tabsJeffas2019-07-111-0/+2
* Implement basic tab completion supportGregory Mullen2019-06-291-1/+5
* Fix Cc & Bcc handling in repliesDrew DeVault2019-06-211-0/+4
* lib/ui/tab: Add Replace methodKevin Kuehler2019-06-111-0/+4
* Add :save and :pipe commands to viewerGalen Abell2019-05-271-0/+4
* Show account wizard if no accounts configuredDrew DeVault2019-05-221-0/+6
* Fix always showing last account tabDrew DeVault2019-05-221-2/+2
* New account wizard, part oneDrew DeVault2019-05-211-0/+2
* Update internal state and draw from the same goroutineSimon Ser2019-05-191-0/+8
* s/aerc2/aerc/gDrew DeVault2019-05-171-3/+3
* Add distinct keybindings for each compose viewDrew DeVault2019-05-141-2/+9
* Add initial compose widgetDrew DeVault2019-05-121-0/+2
* Make the message viewer real, part oneDrew DeVault2019-03-311-2/+0
* Add message view commands, :closeDrew DeVault2019-03-301-0/+2
* Add basic message viewer mockupDrew DeVault2019-03-301-12/+6
* Correct color of error messagesDrew DeVault2019-03-301-1/+1
* Use tcell.Style.Reverse instead of black on whiteDrew DeVault2019-03-301-1/+1
* Expire status errors on inputDrew DeVault2019-03-211-0/+9
* Use : for keybindings even when ex is overriddenDrew DeVault2019-03-211-3/+9
* Rig up terminal keybinding groupDrew DeVault2019-03-211-0/+2
* Use user's configured ex keyDrew DeVault2019-03-211-1/+3
* Add context-specific keybindingsDrew DeVault2019-03-211-8/+38
* Wrap Terminal in TermHostDrew DeVault2019-03-171-0/+5
* Add :term-closeDrew DeVault2019-03-171-0/+8
c8201582f63d'>^
9e751bb8 ^



204dae92 ^




9e751bb8 ^
2c678a4e ^
9e751bb8 ^








1c2d788b ^
9e751bb8 ^




204dae92 ^







201458e3 ^

204dae92 ^








201458e3 ^
204dae92 ^




201458e3 ^
204dae92 ^


76755b28 ^


a654e4ec ^
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174