summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/account/account.go2
-rw-r--r--commands/account/cf.go2
-rw-r--r--commands/account/compose.go2
-rw-r--r--commands/account/copy.go4
-rw-r--r--commands/account/delete-message.go4
-rw-r--r--commands/account/move.go4
-rw-r--r--commands/account/next-folder.go2
-rw-r--r--commands/account/next-message.go2
-rw-r--r--commands/account/pipe.go2
-rw-r--r--commands/account/reply.go2
-rw-r--r--commands/account/select-message.go2
-rw-r--r--commands/account/view-message.go2
-rw-r--r--commands/cd.go2
-rw-r--r--commands/commands.go2
-rw-r--r--commands/compose/abort.go2
-rw-r--r--commands/compose/compose.go2
-rw-r--r--commands/compose/next-field.go2
-rw-r--r--commands/compose/send.go4
-rw-r--r--commands/msgview/close.go2
-rw-r--r--commands/msgview/msgview.go2
-rw-r--r--commands/next-tab.go2
-rw-r--r--commands/quit.go2
-rw-r--r--commands/term.go2
-rw-r--r--commands/terminal/close.go2
-rw-r--r--commands/terminal/terminal.go2
25 files changed, 29 insertions, 29 deletions
diff --git a/commands/account/account.go b/commands/account/account.go
index 918d962..c590c8a 100644
--- a/commands/account/account.go
+++ b/commands/account/account.go
@@ -1,7 +1,7 @@
 package account
 
 import (
-	"git.sr.ht/~sircmpwn/aerc2/commands"
+	"git.sr.ht/~sircmpwn/aerc/commands"
 )
 
 var (
diff --git a/commands/account/cf.go b/commands/account/cf.go
index 3d12b5c..2816473 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
@@ -3,7 +3,7 @@ package account
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 var (
diff --git a/commands/account/compose.go b/commands/account/compose.go
index 1ffd2e2..d77689e 100644
--- a/commands/account/compose.go
+++ b/commands/account/compose.go
@@ -3,7 +3,7 @@ package account
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/account/copy.go b/commands/account/copy.go
index 2a811c8..da26fec 100644
--- a/commands/account/copy.go
+++ b/commands/account/copy.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/gdamore/tcell"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
-	"git.sr.ht/~sircmpwn/aerc2/worker/types"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
 )
 
 func init() {
diff --git a/commands/account/delete-message.go b/commands/account/delete-message.go
index 2461d64..2ad470b 100644
--- a/commands/account/delete-message.go
+++ b/commands/account/delete-message.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/gdamore/tcell"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
-	"git.sr.ht/~sircmpwn/aerc2/worker/types"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
 )
 
 func init() {
diff --git a/commands/account/move.go b/commands/account/move.go
index f84427e..d4978ac 100644
--- a/commands/account/move.go
+++ b/commands/account/move.go
@@ -6,8 +6,8 @@ import (
 
 	"github.com/gdamore/tcell"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
-	"git.sr.ht/~sircmpwn/aerc2/worker/types"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
 )
 
 func init() {
diff --git a/commands/account/next-folder.go b/commands/account/next-folder.go
index 1b59af1..6ad3d54 100644
--- a/commands/account/next-folder.go
+++ b/commands/account/next-folder.go
@@ -5,7 +5,7 @@ import (
 	"fmt"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/account/next-message.go b/commands/account/next-message.go
index d2c006f..f13ea5a 100644
--- a/commands/account/next-message.go
+++ b/commands/account/next-message.go
@@ -6,7 +6,7 @@ import (
 	"strconv"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/account/pipe.go b/commands/account/pipe.go
index f44de30..9461d17 100644
--- a/commands/account/pipe.go
+++ b/commands/account/pipe.go
@@ -6,7 +6,7 @@ import (
 	"os/exec"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 
 	"github.com/gdamore/tcell"
 	"github.com/mattn/go-runewidth"
diff --git a/commands/account/reply.go b/commands/account/reply.go
index 06f93f1..e5b7679 100644
--- a/commands/account/reply.go
+++ b/commands/account/reply.go
@@ -14,7 +14,7 @@ import (
 	"github.com/emersion/go-imap"
 	"git.sr.ht/~sircmpwn/getopt"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/account/select-message.go b/commands/account/select-message.go
index c9e4f8a..bd44c1b 100644
--- a/commands/account/select-message.go
+++ b/commands/account/select-message.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/account/view-message.go b/commands/account/view-message.go
index 3697aa7..cf2baaa 100644
--- a/commands/account/view-message.go
+++ b/commands/account/view-message.go
@@ -3,7 +3,7 @@ package account
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/cd.go b/commands/cd.go
index bb06c23..3da1555 100644
--- a/commands/cd.go
+++ b/commands/cd.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"os"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 	"github.com/mitchellh/go-homedir"
 )
 
diff --git a/commands/commands.go b/commands/commands.go
index a2589f8..04462d2 100644
--- a/commands/commands.go
+++ b/commands/commands.go
@@ -5,7 +5,7 @@ import (
 
 	"github.com/google/shlex"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 type AercCommand func(aerc *widgets.Aerc, args []string) error
diff --git a/commands/compose/abort.go b/commands/compose/abort.go
index 1cd297e..c60793c 100644
--- a/commands/compose/abort.go
+++ b/commands/compose/abort.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/compose/compose.go b/commands/compose/compose.go
index ea53316..35a2ed7 100644
--- a/commands/compose/compose.go
+++ b/commands/compose/compose.go
@@ -1,7 +1,7 @@
 package compose
 
 import (
-	"git.sr.ht/~sircmpwn/aerc2/commands"
+	"git.sr.ht/~sircmpwn/aerc/commands"
 )
 
 var (
diff --git a/commands/compose/next-field.go b/commands/compose/next-field.go
index 2c3b414..a10aa32 100644
--- a/commands/compose/next-field.go
+++ b/commands/compose/next-field.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/compose/send.go b/commands/compose/send.go
index 38d05be..51ae4ce 100644
--- a/commands/compose/send.go
+++ b/commands/compose/send.go
@@ -15,8 +15,8 @@ import (
 	"github.com/gdamore/tcell"
 	"github.com/miolini/datacounter"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
-	"git.sr.ht/~sircmpwn/aerc2/worker/types"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~sircmpwn/aerc/worker/types"
 )
 
 func init() {
diff --git a/commands/msgview/close.go b/commands/msgview/close.go
index 404bb1c..e388f65 100644
--- a/commands/msgview/close.go
+++ b/commands/msgview/close.go
@@ -3,7 +3,7 @@ package msgview
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/msgview/msgview.go b/commands/msgview/msgview.go
index e3db828..f0e42ad 100644
--- a/commands/msgview/msgview.go
+++ b/commands/msgview/msgview.go
@@ -1,7 +1,7 @@
 package msgview
 
 import (
-	"git.sr.ht/~sircmpwn/aerc2/commands"
+	"git.sr.ht/~sircmpwn/aerc/commands"
 )
 
 var (
diff --git a/commands/next-tab.go b/commands/next-tab.go
index a9a77c2..fb5b664 100644
--- a/commands/next-tab.go
+++ b/commands/next-tab.go
@@ -5,7 +5,7 @@ import (
 	"fmt"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/quit.go b/commands/quit.go
index c0c387b..c9d83b7 100644
--- a/commands/quit.go
+++ b/commands/quit.go
@@ -3,7 +3,7 @@ package commands
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/term.go b/commands/term.go
index 91ffebd..3f70d67 100644
--- a/commands/term.go
+++ b/commands/term.go
@@ -4,7 +4,7 @@ import (
 	"os/exec"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 
 	"github.com/gdamore/tcell"
 	"github.com/riywo/loginshell"
diff --git a/commands/terminal/close.go b/commands/terminal/close.go
index aee7f3e..0ea7a5a 100644
--- a/commands/terminal/close.go
+++ b/commands/terminal/close.go
@@ -3,7 +3,7 @@ package terminal
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc2/widgets"
+	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
 func init() {
diff --git a/commands/terminal/terminal.go b/commands/terminal/terminal.go
index f438582..fb1583f 100644
--- a/commands/terminal/terminal.go
+++ b/commands/terminal/terminal.go
@@ -1,7 +1,7 @@
 package terminal
 
 import (
-	"git.sr.ht/~sircmpwn/aerc2/commands"
+	"git.sr.ht/~sircmpwn/aerc/commands"
 )
 
 var (
^
6651dd7 ^

b5159df ^

2e834e9 ^
6651dd7 ^
b5159df ^
b5159df ^

adaa28a ^




ca65478 ^
adaa28a ^



bf35794 ^

3399650 ^
ca65478 ^
0ff8065 ^
352e1b4 ^

3399650 ^
0ff8065 ^


352e1b4 ^
3399650 ^
0ff8065 ^
c09bf8d ^
080a38d ^
352e1b4 ^
3399650 ^



ca65478 ^
3399650 ^








e6cbe9c ^
3399650 ^

adaa28a ^
ca65478 ^
727449d ^
1076f2b

6651dd7 ^
bf35794 ^
b597fa4 ^
dba2306 ^

ca65478 ^
dba2306 ^
dc5d967 ^




1d7674b ^

dba2306 ^

dc5d967 ^
b597fa4 ^
4641aa2 ^

1076f2b
ca65478 ^
b5159df ^
dc5d967 ^
1076f2b
4970ef9 ^


1076f2b
4970ef9 ^

1076f2b

86d1224 ^
e571de8 ^
1076f2b

dba2306 ^

86d1224 ^
1076f2b
f60c597 ^
dba2306 ^

1076f2b
b6ad663 ^
f60c597 ^
dba2306 ^
2ffdc19 ^
b5159df ^
c0705ee ^
dba2306 ^
1076f2b
4e2c5b5 ^
0680c76 ^
b6ad663 ^
727449d ^
e3fd306 ^
0e5c819 ^
95e8d12 ^

e571de8 ^
b5159df ^

0e5c819 ^
b5159df ^
95e8d12 ^


0cf3ba0 ^
95e8d12 ^

c0705ee ^
0e5c819 ^

b5159df ^
b439892 ^
df74b26 ^
439e15d ^
1076f2b

1076f2b

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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284