summary refs log tree commit diff stats
path: root/widgets/aerc.go
Commit message (Expand)AuthorAgeFilesLines
* 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
* Handle terminal title, login shellDrew DeVault2019-03-171-1/+0
* Implement :next-tab, :prev-tabDrew DeVault2019-03-171-0/+16
* Move exline handling up to aerc, add :termDrew DeVault2019-03-171-15/+114
* commands: handle case where no account selectedDrew DeVault2019-03-171-1/+5
* Add basic terminal widgetDrew DeVault2019-03-171-0/+4
* Implement sidebar-width config optionDrew DeVault2019-03-151-2/+1
* Rig up key bindingsDrew DeVault2019-03-151-1/+1
* Start building out command subsystemDrew DeVault2019-03-101-6/+8
* Fix buildElias Naur2019-02-101-1/+2
* Implement Container interface in widgets/Drew DeVault2019-01-201-0/+4
* Send commands up to the top-level aerc widgetDrew DeVault2019-01-141-8/+14
* Move ex line into accountDrew DeVault2019-01-131-40/+9
* Move status line into account, update behaviorDrew DeVault2019-01-131-6/+9
* Initialize worker in account widgetDrew DeVault2019-01-131-1/+6
* Add basic account widget, populate real acct viewsDrew DeVault2019-01-131-27/+4
* Apply gofmtDrew DeVault2018-06-121-8/+8
* Apply gofmtDrew DeVault2018-06-111-5/+5
* Move sidebar into account tabsDrew DeVault2018-06-111-16/+29
* switch to tcell from termboxMarkus Ongyerth2018-06-011-13/+11
* Summon exline on demandDrew DeVault2018-02-271-11/+24
* Push commands to the status stackDrew DeVault2018-02-271-4/+3
* Pull main aerc UI into widgetDrew DeVault2018-02-271-0/+91
019-01-13 13:33:43 -0500 Move ex line into account' href='/akspecs/aerc/commit/widgets/account.go?h=0.1.0&id=c286d3da6ba8636412db5c3b72fda739a06e7f6c'>c286d3d ^
b76deea ^
0911cd5 ^
24dfc47 ^
589db74 ^
2349b7d ^
11f0a72 ^
0f8b7a1 ^

24dfc47 ^
589db74 ^








0911cd5 ^






24dfc47 ^
0911cd5 ^


24dfc47 ^

589db74 ^
0911cd5 ^
24dfc47 ^
0911cd5 ^

17bd2dc ^



62946ff ^
24dfc47 ^
62946ff ^

607ece8 ^
1228448 ^


648ca98 ^
b76deea ^


648ca98 ^








c286d3d ^
589db74 ^

c286d3d ^
2349b7d ^



589db74 ^
cf66462 ^



77c76ba ^
cf66462 ^








589db74 ^
cf66462 ^
2349b7d ^

2349b7d ^



2349b7d ^

b60999c ^




24daef8 ^



b60999c ^
b389647 ^



4ec7f5d ^








b389647 ^

0f8b7a1 ^

b389647 ^





ef6178a ^
b389647 ^



0abafa6 ^
77ede6e ^

b389647 ^


312a53e ^


b389647 ^

589db74 ^
2958579 ^
b389647 ^
b60999c ^
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
193