summary refs log tree commit diff stats
path: root/widgets/terminal.go
Commit message (Expand)AuthorAgeFilesLines
* 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
-09 02:56:27 -0800 committer Kartik K. Agaram <vc@akkartik.com> 2016-03-09 02:56:27 -0800 2743' href='/akkartik/mu/commit/html/003trace.test.cc.html?h=main&id=4690ce81e079fc58cae8d6d583e5e3eb3ed81a83'>4690ce81 ^
9542bb11 ^

c5ffb6e1 ^

672e3e50 ^

4690ce81 ^
d009e158 ^




4690ce81 ^
9542bb11 ^

c5ffb6e1 ^
672e3e50 ^

4690ce81 ^
9542bb11 ^

c5ffb6e1 ^
672e3e50 ^

4690ce81 ^
9542bb11 ^
c5ffb6e1 ^
672e3e50 ^

4690ce81 ^
9542bb11 ^
c5ffb6e1 ^
672e3e50 ^

4690ce81 ^
9542bb11 ^


c5ffb6e1 ^
672e3e50 ^

4690ce81 ^
9542bb11 ^

672e3e50 ^


4690ce81 ^
9542bb11 ^

672e3e50 ^


4690ce81 ^
9542bb11 ^
62a52ffb ^


672e3e50 ^


76755b28 ^

672e3e50 ^
76755b28 ^

672e3e50 ^




4690ce81 ^
672e3e50 ^

65361948 ^
672e3e50 ^

4690ce81 ^
672e3e50 ^

65361948 ^
672e3e50 ^

4690ce81 ^
672e3e50 ^

65361948 ^

672e3e50 ^

4690ce81 ^
672e3e50 ^

65361948 ^


672e3e50 ^

4690ce81 ^
672e3e50 ^

65361948 ^


672e3e50 ^
c5ffb6e1 ^
4690ce81 ^
c5ffb6e1 ^













672e3e50 ^


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