summary refs log tree commit diff stats
path: root/widgets/terminal.go
Commit message (Expand)AuthorAgeFilesLines
* Don't initialize an invalid pty sizeDrew DeVault2019-07-131-0/+3
* Use forked version of tcellDrew DeVault2019-06-011-1/+1
* widgets/terminal: Don't segfault on resizeKevin Kuehler2019-06-011-10/+15
* Update terminal color handling per vterm changesDrew DeVault2019-05-261-43/+22
* Update to the latest go-libvtermDrew DeVault2019-05-261-1/+1
* widgets/terminal: fix damage race conditionSimon Ser2019-05-191-1/+12
* s/aerc2/aerc/gDrew DeVault2019-05-171-1/+1
* Implement :{next,prev}-field in compose viewDrew DeVault2019-05-121-0/+3
* "Press any key to close" for completed processesDrew DeVault2019-05-111-0/+6
* lib/ui: introduce InvalidatableSimon Ser2019-04-271-21/+15
* Re-render terminal on invalidateDrew DeVault2019-04-151-4/+13
* Clear damage on each terminal.Draw callDrew DeVault2019-04-051-0/+2
* Fix wrong row due to typoTom Lebreux2019-04-051-1/+1
* Fix crash on command not foundDrew DeVault2019-03-301-37/+42
* Implement :pipeDrew DeVault2019-03-301-6/+14
* Expire status errors on inputDrew DeVault2019-03-211-6/+8
* term: don't mess with cursor when unfocusedDrew DeVault2019-03-211-6/+15
* Enable alt screen on built-in terminalDrew DeVault2019-03-211-0/+1
* Make terminal closure thread safeDrew DeVault2019-03-211-1/+9
* Use GetCursorPos instead of stored positionDrew DeVault2019-03-211-1/+4
* Skip writes if term is closedDrew DeVault2019-03-211-1/+1
* Improve cursor handling in embedded terminalDrew DeVault2019-03-211-8/+19
* Fix cursor handling in embedded terminalDrew DeVault2019-03-211-14/+8
* Forward key events to child terminalDrew DeVault2019-03-211-1/+135
* moar colorsDrew DeVault2019-03-171-4/+10
* s/:term-close/:close/gDrew DeVault2019-03-171-1/+0
* Wrap Terminal in TermHostDrew DeVault2019-03-171-1/+1
* Add :term-closeDrew DeVault2019-03-171-12/+30
* Handle terminal title, login shellDrew DeVault2019-03-171-0/+13
* Fix terminal colors; wait until tty size is knownDrew DeVault2019-03-171-21/+75
* Add basic terminal widgetDrew DeVault2019-03-171-0/+179
7779'>^
fc719e4 ^

8be4c57 ^


fc719e4 ^


7ecc6f9 ^






e1152b6 ^
7ecc6f9 ^
e1152b6 ^
7ecc6f9 ^

50f25e7 ^









a1763bf ^

50f25e7 ^

8635c70 ^
a1763bf ^
50f25e7 ^
030f390 ^





50f25e7 ^

f81e4bd ^


50f25e7 ^




2d6338e ^

50f25e7 ^
f81e4bd ^



d22a914 ^


2d6338e ^
fc719e4 ^



f81e4bd ^














50f25e7 ^
fc719e4 ^


50f25e7 ^
fc719e4 ^



2d6338e ^











ce475e4 ^

1bb1a80 ^
ce475e4 ^
e56ceb0 ^
28fc9fa ^

ccf5c02 ^


e56ceb0 ^

7899d15 ^

2d6338e ^


7899d15 ^


0ee7d30 ^



2d6338e ^



















fc719e4 ^




0b14d92 ^







fc719e4 ^

7a26b48 ^
4875813 ^
fc719e4 ^





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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261