summary refs log tree commit diff stats
path: root/widgets
Commit message (Expand)AuthorAgeFilesLines
* Fix terminal colors; wait until tty size is knownDrew DeVault2019-03-171-21/+75
* Add basic terminal widgetDrew DeVault2019-03-174-6/+213
* Implement :select-messageDrew DeVault2019-03-151-0/+9
* Implement scrolling in message listDrew DeVault2019-03-151-3/+14
* Implement :next-message n%Drew DeVault2019-03-151-0/+6
* Move MessageStore into its own fileDrew DeVault2019-03-152-86/+7
* Implement default in accounts.confDrew DeVault2019-03-151-1/+1
* Implement sidebar-width config optionDrew DeVault2019-03-152-3/+2
* Fix nil dereference on rapidly cycling foldersDrew DeVault2019-03-151-1/+1
* Rig up key bindingsDrew DeVault2019-03-154-32/+62
* Implement key bindings subsystemDrew DeVault2019-03-151-4/+2
* widgets/directories.go -> widgets/dirlist.goDrew DeVault2019-03-141-0/+0
* Implement :{next,prev}-messageDrew DeVault2019-03-142-0/+24
* Invalidate when UIDs finish downloadingDrew DeVault2019-03-141-4/+0
* Use cached message store when re-opening dirsDrew DeVault2019-03-141-1/+9
* Implement :cd commandDrew DeVault2019-03-142-2/+21
* Display message subjects in message listDrew DeVault2019-03-142-4/+23
* Implement message store side of message fetchingDrew DeVault2019-03-142-12/+54
* Lay out message list widget basic designDrew DeVault2019-03-143-4/+108
* Fetch valid UIDs from server after opening dirDrew DeVault2019-03-102-6/+65
* Improve error reportingDrew DeVault2019-03-101-3/+2
* Flesh out command parsing & handlingDrew DeVault2019-03-101-1/+1
* Start building out command subsystemDrew DeVault2019-03-103-7/+54
* Fix buildElias Naur2019-02-102-2/+3
* Implement Container interface in widgets/Drew DeVault2019-01-202-0/+8
* Send commands up to the top-level aerc widgetDrew DeVault2019-01-142-12/+24
* Add cursor handling in ex lineDrew DeVault2019-01-141-3/+9
* Handle errors from worker initializationDrew DeVault2019-01-131-1/+1
* Swap message list placeholder for spinnerDrew DeVault2019-01-131-1/+3
* Add loading spinnerDrew DeVault2019-01-132-1/+99
* Handle connection errors properlyDrew DeVault2019-01-131-3/+4
* Issue IMAP SELECT commandDrew DeVault2019-01-131-0/+1
* Simplify approach to directory listDrew DeVault2019-01-132-8/+35
* Revert "Add abstract list, update dirlist accordingly"Drew DeVault2019-01-131-45/+26
* Revert "Render selected list item differently"Drew DeVault2019-01-131-7/+3
* Render selected list item differentlyDrew DeVault2019-01-131-3/+7
* Add abstract list, update dirlist accordinglyDrew DeVault2019-01-131-26/+45
* Filter dirlist according to user configDrew DeVault2019-01-132-6/+19
* Add directory list widgetDrew DeVault2019-01-132-23/+84
* Move ex line into accountDrew DeVault2019-01-132-66/+58
* Move status line into account, update behaviorDrew DeVault2019-01-132-15/+44
* Remove old account widgetDrew DeVault2019-01-131-97/+0
* Initialize worker in account widgetDrew DeVault2019-01-132-3/+56
* Add basic account widget, populate real acct viewsDrew DeVault2019-01-132-27/+45
* Apply gofmtDrew DeVault2018-06-121-8/+8
* Apply gofmtDrew DeVault2018-06-113-10/+10
* Move sidebar into account tabsDrew DeVault2018-06-111-16/+29
* switch to tcell from termboxMarkus Ongyerth2018-06-013-58/+45
* Summon exline on demandDrew DeVault2018-02-271-11/+24
* Push commands to the status stackDrew DeVault2018-02-271-4/+3
94e429f ^

91d229b ^
94e429f ^

91d229b ^
94e429f ^

94e429f ^

91d229b ^





40fc398 ^
91d229b ^
94e429f ^

91d229b ^
94e429f ^

91d229b ^
40fc398 ^
91d229b ^
94e429f ^

d26a4e1 ^
94e429f ^




4e17951 ^











d26a4e1 ^
94e429f ^




d26a4e1 ^
94e429f ^







55444d8 ^
214aa23 ^

183caad ^
c6f759b ^
94e429f ^



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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192