aboutsummaryrefslogtreecommitdiffstats
path: root/commands/msgview
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msgview')
-rw-r--r--commands/msgview/close.go2
-rw-r--r--commands/msgview/msgview.go2
-rw-r--r--commands/msgview/next-part.go2
-rw-r--r--commands/msgview/next.go6
-rw-r--r--commands/msgview/open.go4
-rw-r--r--commands/msgview/save.go6
-rw-r--r--commands/msgview/toggle-headers.go2
7 files changed, 12 insertions, 12 deletions
diff --git a/commands/msgview/close.go b/commands/msgview/close.go
index ed86405a..37f66ad3 100644
--- a/commands/msgview/close.go
+++ b/commands/msgview/close.go
@@ -3,7 +3,7 @@ package msgview
import (
"errors"
- "git.sr.ht/~sircmpwn/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/widgets"
)
type Close struct{}
diff --git a/commands/msgview/msgview.go b/commands/msgview/msgview.go
index d60549ee..0f0108e2 100644
--- a/commands/msgview/msgview.go
+++ b/commands/msgview/msgview.go
@@ -1,7 +1,7 @@
package msgview
import (
- "git.sr.ht/~sircmpwn/aerc/commands"
+ "git.sr.ht/~rjarry/aerc/commands"
)
var (
diff --git a/commands/msgview/next-part.go b/commands/msgview/next-part.go
index a98e96a7..f44ffabf 100644
--- a/commands/msgview/next-part.go
+++ b/commands/msgview/next-part.go
@@ -4,7 +4,7 @@ import (
"fmt"
"strconv"
- "git.sr.ht/~sircmpwn/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/widgets"
)
type NextPrevPart struct{}
diff --git a/commands/msgview/next.go b/commands/msgview/next.go
index 978cf10f..4291a6a5 100644
--- a/commands/msgview/next.go
+++ b/commands/msgview/next.go
@@ -1,9 +1,9 @@
package msgview
import (
- "git.sr.ht/~sircmpwn/aerc/commands/account"
- "git.sr.ht/~sircmpwn/aerc/lib"
- "git.sr.ht/~sircmpwn/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/commands/account"
+ "git.sr.ht/~rjarry/aerc/lib"
+ "git.sr.ht/~rjarry/aerc/widgets"
)
type NextPrevMsg struct{}
diff --git a/commands/msgview/open.go b/commands/msgview/open.go
index 57e7227a..bcfe2b48 100644
--- a/commands/msgview/open.go
+++ b/commands/msgview/open.go
@@ -8,8 +8,8 @@ import (
"os"
"time"
- "git.sr.ht/~sircmpwn/aerc/lib"
- "git.sr.ht/~sircmpwn/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/lib"
+ "git.sr.ht/~rjarry/aerc/widgets"
)
type Open struct{}
diff --git a/commands/msgview/save.go b/commands/msgview/save.go
index 5d01e4d8..713c6d11 100644
--- a/commands/msgview/save.go
+++ b/commands/msgview/save.go
@@ -12,9 +12,9 @@ import (
"git.sr.ht/~sircmpwn/getopt"
"github.com/mitchellh/go-homedir"
- "git.sr.ht/~sircmpwn/aerc/commands"
- "git.sr.ht/~sircmpwn/aerc/models"
- "git.sr.ht/~sircmpwn/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/commands"
+ "git.sr.ht/~rjarry/aerc/models"
+ "git.sr.ht/~rjarry/aerc/widgets"
)
type Save struct{}
diff --git a/commands/msgview/toggle-headers.go b/commands/msgview/toggle-headers.go
index e777d9be..75f7e462 100644
--- a/commands/msgview/toggle-headers.go
+++ b/commands/msgview/toggle-headers.go
@@ -3,7 +3,7 @@ package msgview
import (
"fmt"
- "git.sr.ht/~sircmpwn/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/widgets"
)
type ToggleHeaders struct{}