summary refs log tree commit diff stats
path: root/commands/msgview
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-17 20:57:10 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-17 20:57:10 -0400
commit98da4c9509d03f8ffe48b9c66b9c3ce8a0f2f942 (patch)
treedcbd0072649785e8b99104fd1865aecba1eacdb0 /commands/msgview
parent9c10a90cac7037d14b8b0d9d6a0ac2584199278b (diff)
downloadaerc-98da4c9509d03f8ffe48b9c66b9c3ce8a0f2f942.tar.gz
s/aerc2/aerc/g
Diffstat (limited to 'commands/msgview')
-rw-r--r--commands/msgview/close.go2
-rw-r--r--commands/msgview/msgview.go2
2 files changed, 2 insertions, 2 deletions
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 (
=main&id=5396e24cba8390ca2d70d99c7e8772eee4ec3a11'>5396e24c ^
59151049 ^

5396e24c ^
59151049 ^



















dd60caa3 ^
59151049 ^
dd60caa3 ^
82171a0f ^
59151049 ^
dd60caa3 ^
5396e24c ^
59151049 ^






















82171a0f ^
59151049 ^
dd60caa3 ^
59151049 ^

dd60caa3 ^

59151049 ^

















































a8fb537a ^



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