about summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2021-11-05 10:19:46 +0100
committerRobin Jarry <robin@jarry.cc>2021-11-05 10:21:45 +0100
commit0d645bcebda8d764c4f21f71ded1e3627d6e8837 (patch)
tree5869c22738e34d8da223c06b5a5289f08825a8f7 /commands
parentb2e9df623f638ecda539ec69f30a31b6693df2d1 (diff)
downloadaerc-0d645bcebda8d764c4f21f71ded1e3627d6e8837.tar.gz
go.mod: change base git url
I'm not sure what are the implications but it seems required.

Link: https://github.com/golang/go/issues/20883
Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands')
-rw-r--r--commands/account/account.go2
-rw-r--r--commands/account/cf.go4
-rw-r--r--commands/account/clear.go2
-rw-r--r--commands/account/compose.go4
-rw-r--r--commands/account/mkdir.go4
-rw-r--r--commands/account/next-folder.go2
-rw-r--r--commands/account/next-result.go2
-rw-r--r--commands/account/next.go2
-rw-r--r--commands/account/rmdir.go4
-rw-r--r--commands/account/search.go2
-rw-r--r--commands/account/select.go2
-rw-r--r--commands/account/sort.go4
-rw-r--r--commands/account/view.go4
-rw-r--r--commands/cd.go2
-rw-r--r--commands/choose.go2
-rw-r--r--commands/commands.go2
-rw-r--r--commands/compose/abort.go2
-rw-r--r--commands/compose/attach.go4
-rw-r--r--commands/compose/cc-bcc.go2
-rw-r--r--commands/compose/compose.go2
-rw-r--r--commands/compose/detach.go2
-rw-r--r--commands/compose/edit.go2
-rw-r--r--commands/compose/header.go4
-rw-r--r--commands/compose/next-field.go2
-rw-r--r--commands/compose/postpone.go6
-rw-r--r--commands/compose/send.go8
-rw-r--r--commands/ct.go2
-rw-r--r--commands/exec.go2
-rw-r--r--commands/help.go2
-rw-r--r--commands/move-tab.go2
-rw-r--r--commands/msg/archive.go8
-rw-r--r--commands/msg/copy.go6
-rw-r--r--commands/msg/delete.go8
-rw-r--r--commands/msg/forward.go10
-rw-r--r--commands/msg/mark.go2
-rw-r--r--commands/msg/modify-labels.go6
-rw-r--r--commands/msg/move.go6
-rw-r--r--commands/msg/msg.go2
-rw-r--r--commands/msg/pipe.go6
-rw-r--r--commands/msg/read.go8
-rw-r--r--commands/msg/recall.go8
-rw-r--r--commands/msg/reply.go8
-rw-r--r--commands/msg/unsubscribe.go6
-rw-r--r--commands/msg/utils.go8
-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
-rw-r--r--commands/new-account.go2
-rw-r--r--commands/next-tab.go2
-rw-r--r--commands/pin-tab.go2
-rw-r--r--commands/prompt.go2
-rw-r--r--commands/pwd.go2
-rw-r--r--commands/quit.go2
-rw-r--r--commands/set.go2
-rw-r--r--commands/term.go2
-rw-r--r--commands/terminal/close.go2
-rw-r--r--commands/terminal/terminal.go2
-rw-r--r--commands/util.go6
62 files changed, 114 insertions, 114 deletions
diff --git a/commands/account/account.go b/commands/account/account.go
index 9c90087..4731c19 100644
--- a/commands/account/account.go
+++ b/commands/account/account.go
@@ -1,7 +1,7 @@
 package account
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/commands"
 )
 
 var (
diff --git a/commands/account/cf.go b/commands/account/cf.go
index 65b8810..ad93fdf 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
@@ -4,8 +4,8 @@ import (
 	"errors"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 var (
diff --git a/commands/account/clear.go b/commands/account/clear.go
index 838bfcc..3fecc13 100644
--- a/commands/account/clear.go
+++ b/commands/account/clear.go
@@ -2,7 +2,7 @@ package account
 
 import (
 	"errors"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"time"
 )
 
diff --git a/commands/account/compose.go b/commands/account/compose.go
index b33acf5..f48fa69 100644
--- a/commands/account/compose.go
+++ b/commands/account/compose.go
@@ -5,8 +5,8 @@ import (
 	"regexp"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"git.sr.ht/~sircmpwn/getopt"
 )
 
diff --git a/commands/account/mkdir.go b/commands/account/mkdir.go
index d3a6226..8a260c0 100644
--- a/commands/account/mkdir.go
+++ b/commands/account/mkdir.go
@@ -5,8 +5,8 @@ import (
 	"strings"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type MakeDir struct{}
diff --git a/commands/account/next-folder.go b/commands/account/next-folder.go
index 037cd31..e3541e5 100644
--- a/commands/account/next-folder.go
+++ b/commands/account/next-folder.go
@@ -5,7 +5,7 @@ import (
 	"fmt"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevFolder struct{}
diff --git a/commands/account/next-result.go b/commands/account/next-result.go
index fe835ea..daa7af3 100644
--- a/commands/account/next-result.go
+++ b/commands/account/next-result.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevResult struct{}
diff --git a/commands/account/next.go b/commands/account/next.go
index 427f563..c9c2680 100644
--- a/commands/account/next.go
+++ b/commands/account/next.go
@@ -6,7 +6,7 @@ import (
 	"strconv"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevMsg struct{}
diff --git a/commands/account/rmdir.go b/commands/account/rmdir.go
index 9cd974f..be49377 100644
--- a/commands/account/rmdir.go
+++ b/commands/account/rmdir.go
@@ -6,8 +6,8 @@ import (
 
 	"git.sr.ht/~sircmpwn/getopt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type RemoveDir struct{}
diff --git a/commands/account/search.go b/commands/account/search.go
index 607dc24..9a9244d 100644
--- a/commands/account/search.go
+++ b/commands/account/search.go
@@ -3,7 +3,7 @@ package account
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type SearchFilter struct{}
diff --git a/commands/account/select.go b/commands/account/select.go
index b41b234..28aedfa 100644
--- a/commands/account/select.go
+++ b/commands/account/select.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type SelectMessage struct{}
diff --git a/commands/account/sort.go b/commands/account/sort.go
index 6202578..89a5e38 100644
--- a/commands/account/sort.go
+++ b/commands/account/sort.go
@@ -4,8 +4,8 @@ import (
 	"errors"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/lib/sort"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/lib/sort"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Sort struct{}
diff --git a/commands/account/view.go b/commands/account/view.go
index d52ce5b..4f59d94 100644
--- a/commands/account/view.go
+++ b/commands/account/view.go
@@ -3,8 +3,8 @@ package account
 import (
 	"errors"
 
-	"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 ViewMessage struct{}
diff --git a/commands/cd.go b/commands/cd.go
index fa487e7..edfc179 100644
--- a/commands/cd.go
+++ b/commands/cd.go
@@ -5,7 +5,7 @@ import (
 	"os"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"github.com/mitchellh/go-homedir"
 )
 
diff --git a/commands/choose.go b/commands/choose.go
index 6fa91be..3b3af79 100644
--- a/commands/choose.go
+++ b/commands/choose.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Choose struct{}
diff --git a/commands/commands.go b/commands/commands.go
index 0c761d1..3777835 100644
--- a/commands/commands.go
+++ b/commands/commands.go
@@ -9,7 +9,7 @@ import (
 
 	"github.com/google/shlex"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Command interface {
diff --git a/commands/compose/abort.go b/commands/compose/abort.go
index 74d0395..d4a4699 100644
--- a/commands/compose/abort.go
+++ b/commands/compose/abort.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Abort struct{}
diff --git a/commands/compose/attach.go b/commands/compose/attach.go
index 37f49df..50abda5 100644
--- a/commands/compose/attach.go
+++ b/commands/compose/attach.go
@@ -5,8 +5,8 @@ import (
 	"os"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"github.com/mitchellh/go-homedir"
 )
 
diff --git a/commands/compose/cc-bcc.go b/commands/compose/cc-bcc.go
index ce62242..5540f83 100644
--- a/commands/compose/cc-bcc.go
+++ b/commands/compose/cc-bcc.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type CC struct{}
diff --git a/commands/compose/compose.go b/commands/compose/compose.go
index d61696e..563dcd1 100644
--- a/commands/compose/compose.go
+++ b/commands/compose/compose.go
@@ -1,7 +1,7 @@
 package compose
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/commands"
 )
 
 var (
diff --git a/commands/compose/detach.go b/commands/compose/detach.go
index b48159d..31ac082 100644
--- a/commands/compose/detach.go
+++ b/commands/compose/detach.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Detach struct{}
diff --git a/commands/compose/edit.go b/commands/compose/edit.go
index e788022..375f361 100644
--- a/commands/compose/edit.go
+++ b/commands/compose/edit.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Edit struct{}
diff --git a/commands/compose/header.go b/commands/compose/header.go
index e4d7c40..5780aa8 100644
--- a/commands/compose/header.go
+++ b/commands/compose/header.go
@@ -4,8 +4,8 @@ import (
 	"fmt"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"git.sr.ht/~sircmpwn/getopt"
 )
 
diff --git a/commands/compose/next-field.go b/commands/compose/next-field.go
index a81852e..69b33e5 100644
--- a/commands/compose/next-field.go
+++ b/commands/compose/next-field.go
@@ -3,7 +3,7 @@ package compose
 import (
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevField struct{}
diff --git a/commands/compose/postpone.go b/commands/compose/postpone.go
index 6d6c8e7..03a8608 100644
--- a/commands/compose/postpone.go
+++ b/commands/compose/postpone.go
@@ -8,9 +8,9 @@ import (
 	"github.com/miolini/datacounter"
 	"github.com/pkg/errors"
 
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type Postpone struct{}
diff --git a/commands/compose/send.go b/commands/compose/send.go
index 849182d..12bf155 100644
--- a/commands/compose/send.go
+++ b/commands/compose/send.go
@@ -15,10 +15,10 @@ import (
 	"github.com/google/shlex"
 	"github.com/pkg/errors"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 	"github.com/emersion/go-message/mail"
 	"golang.org/x/oauth2"
 )
diff --git a/commands/ct.go b/commands/ct.go
index 8b6e8a8..7764cab 100644
--- a/commands/ct.go
+++ b/commands/ct.go
@@ -6,7 +6,7 @@ import (
 	"strconv"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type ChangeTab struct{}
diff --git a/commands/exec.go b/commands/exec.go
index b1966c2..317bf07 100644
--- a/commands/exec.go
+++ b/commands/exec.go
@@ -7,7 +7,7 @@ import (
 	"os/exec"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type ExecCmd struct{}
diff --git a/commands/help.go b/commands/help.go
index b27c2f0..5bc8f0e 100644
--- a/commands/help.go
+++ b/commands/help.go
@@ -3,7 +3,7 @@ package commands
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Help struct{}
diff --git a/commands/move-tab.go b/commands/move-tab.go
index 9f0293c..4151bd7 100644
--- a/commands/move-tab.go
+++ b/commands/move-tab.go
@@ -5,7 +5,7 @@ import (
 	"strconv"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type MoveTab struct{}
diff --git a/commands/msg/archive.go b/commands/msg/archive.go
index 59ca985..e73e42c 100644
--- a/commands/msg/archive.go
+++ b/commands/msg/archive.go
@@ -7,10 +7,10 @@ import (
 	"sync"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 const (
diff --git a/commands/msg/copy.go b/commands/msg/copy.go
index 8e5bad0..3b3dd72 100644
--- a/commands/msg/copy.go
+++ b/commands/msg/copy.go
@@ -7,9 +7,9 @@ import (
 
 	"git.sr.ht/~sircmpwn/getopt"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type Copy struct{}
diff --git a/commands/msg/delete.go b/commands/msg/delete.go
index 677a666..34eac72 100644
--- a/commands/msg/delete.go
+++ b/commands/msg/delete.go
@@ -4,10 +4,10 @@ import (
 	"errors"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type Delete struct{}
diff --git a/commands/msg/forward.go b/commands/msg/forward.go
index ec89bfa..9cc13c0 100644
--- a/commands/msg/forward.go
+++ b/commands/msg/forward.go
@@ -10,11 +10,11 @@ import (
 	"path"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/lib/format"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/lib/format"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 	"github.com/emersion/go-message/mail"
 
 	"git.sr.ht/~sircmpwn/getopt"
diff --git a/commands/msg/mark.go b/commands/msg/mark.go
index 3955f4a..d6beae4 100644
--- a/commands/msg/mark.go
+++ b/commands/msg/mark.go
@@ -3,7 +3,7 @@ package msg
 import (
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"git.sr.ht/~sircmpwn/getopt"
 )
 
diff --git a/commands/msg/modify-labels.go b/commands/msg/modify-labels.go
index 082742b..ca3ccf7 100644
--- a/commands/msg/modify-labels.go
+++ b/commands/msg/modify-labels.go
@@ -4,9 +4,9 @@ import (
 	"errors"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type ModifyLabels struct{}
diff --git a/commands/msg/move.go b/commands/msg/move.go
index 31e243a..098227e 100644
--- a/commands/msg/move.go
+++ b/commands/msg/move.go
@@ -7,9 +7,9 @@ import (
 
 	"git.sr.ht/~sircmpwn/getopt"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type Move struct{}
diff --git a/commands/msg/msg.go b/commands/msg/msg.go
index ecf2102..7b6fb12 100644
--- a/commands/msg/msg.go
+++ b/commands/msg/msg.go
@@ -1,7 +1,7 @@
 package msg
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/commands"
 )
 
 var (
diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go
index 0e22fd0..58764fb 100644
--- a/commands/msg/pipe.go
+++ b/commands/msg/pipe.go
@@ -7,9 +7,9 @@ import (
 	"os/exec"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 
 	"git.sr.ht/~sircmpwn/getopt"
 )
diff --git a/commands/msg/read.go b/commands/msg/read.go
index 95becf7..d2484d4 100644
--- a/commands/msg/read.go
+++ b/commands/msg/read.go
@@ -7,10 +7,10 @@ import (
 
 	"git.sr.ht/~sircmpwn/getopt"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type FlagMsg struct{}
diff --git a/commands/msg/recall.go b/commands/msg/recall.go
index 44f8ddf..61c4c39 100644
--- a/commands/msg/recall.go
+++ b/commands/msg/recall.go
@@ -8,10 +8,10 @@ import (
 	"github.com/emersion/go-message/mail"
 	"github.com/pkg/errors"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
-	"git.sr.ht/~sircmpwn/aerc/worker/types"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/worker/types"
 )
 
 type Recall struct{}
diff --git a/commands/msg/reply.go b/commands/msg/reply.go
index 2e4a21a..8b21995 100644
--- a/commands/msg/reply.go
+++ b/commands/msg/reply.go
@@ -9,10 +9,10 @@ import (
 
 	"git.sr.ht/~sircmpwn/getopt"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/lib/format"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/lib/format"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"github.com/emersion/go-message/mail"
 )
 
diff --git a/commands/msg/unsubscribe.go b/commands/msg/unsubscribe.go
index cf3e4a8..a489ec5 100644
--- a/commands/msg/unsubscribe.go
+++ b/commands/msg/unsubscribe.go
@@ -6,9 +6,9 @@ import (
 	"net/url"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"github.com/emersion/go-message/mail"
 )
 
diff --git a/commands/msg/utils.go b/commands/msg/utils.go
index cad0f82..212fc75 100644
--- a/commands/msg/utils.go
+++ b/commands/msg/utils.go
@@ -3,10 +3,10 @@ package msg
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/commands"
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type helper struct {
diff --git a/commands/msgview/close.go b/commands/msgview/close.go
index ed86405..37f66ad 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 d60549e..0f0108e 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 a98e96a..f44ffab 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 978cf10..4291a6a 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 57e7227..bcfe2b4 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 5d01e4d..713c6d1 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 e777d9b..75f7e46 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{}
diff --git a/commands/new-account.go b/commands/new-account.go
index ff585c0..77ca3f8 100644
--- a/commands/new-account.go
+++ b/commands/new-account.go
@@ -3,7 +3,7 @@ package commands
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"git.sr.ht/~sircmpwn/getopt"
 )
 
diff --git a/commands/next-tab.go b/commands/next-tab.go
index fc668f1..9d6a09b 100644
--- a/commands/next-tab.go
+++ b/commands/next-tab.go
@@ -4,7 +4,7 @@ import (
 	"fmt"
 	"strconv"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type NextPrevTab struct{}
diff --git a/commands/pin-tab.go b/commands/pin-tab.go
index 164a68b..9a62661 100644
--- a/commands/pin-tab.go
+++ b/commands/pin-tab.go
@@ -3,7 +3,7 @@ package commands
 import (
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type PinTab struct{}
diff --git a/commands/prompt.go b/commands/prompt.go
index 2d6d01d..6714eb3 100644
--- a/commands/prompt.go
+++ b/commands/prompt.go
@@ -3,7 +3,7 @@ package commands
 import (
 	"fmt"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Prompt struct{}
diff --git a/commands/pwd.go b/commands/pwd.go
index d3f0e0c..624258c 100644
--- a/commands/pwd.go
+++ b/commands/pwd.go
@@ -5,7 +5,7 @@ import (
 	"os"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type PrintWorkDir struct{}
diff --git a/commands/quit.go b/commands/quit.go
index 63bc94a..fbec2b7 100644
--- a/commands/quit.go
+++ b/commands/quit.go
@@ -3,7 +3,7 @@ package commands
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Quit struct{}
diff --git a/commands/set.go b/commands/set.go
index cc6333e..0259240 100644
--- a/commands/set.go
+++ b/commands/set.go
@@ -4,7 +4,7 @@ import (
 	"errors"
 	"strings"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 
 	"github.com/go-ini/ini"
 )
diff --git a/commands/term.go b/commands/term.go
index c28c7d0..924f71c 100644
--- a/commands/term.go
+++ b/commands/term.go
@@ -5,7 +5,7 @@ import (
 
 	"github.com/riywo/loginshell"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Term struct{}
diff --git a/commands/terminal/close.go b/commands/terminal/close.go
index aca0166..95ee94c 100644
--- a/commands/terminal/close.go
+++ b/commands/terminal/close.go
@@ -3,7 +3,7 @@ package terminal
 import (
 	"errors"
 
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/widgets"
 )
 
 type Close struct{}
diff --git a/commands/terminal/terminal.go b/commands/terminal/terminal.go
index 710d796..c93f80e 100644
--- a/commands/terminal/terminal.go
+++ b/commands/terminal/terminal.go
@@ -1,7 +1,7 @@
 package terminal
 
 import (
-	"git.sr.ht/~sircmpwn/aerc/commands"
+	"git.sr.ht/~rjarry/aerc/commands"
 )
 
 var (
diff --git a/commands/util.go b/commands/util.go
index 8e2bdbc..ffc5ed6 100644
--- a/commands/util.go
+++ b/commands/util.go
@@ -10,9 +10,9 @@ import (
 	"strings"
 	"time"
 
-	"git.sr.ht/~sircmpwn/aerc/lib"
-	"git.sr.ht/~sircmpwn/aerc/models"
-	"git.sr.ht/~sircmpwn/aerc/widgets"
+	"git.sr.ht/~rjarry/aerc/lib"
+	"git.sr.ht/~rjarry/aerc/models"
+	"git.sr.ht/~rjarry/aerc/widgets"
 	"github.com/gdamore/tcell/v2"
 	"github.com/mitchellh/go-homedir"
 )