From 0d645bcebda8d764c4f21f71ded1e3627d6e8837 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Fri, 5 Nov 2021 10:19:46 +0100 Subject: 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 --- commands/account/account.go | 2 +- commands/account/cf.go | 4 ++-- commands/account/clear.go | 2 +- commands/account/compose.go | 4 ++-- commands/account/mkdir.go | 4 ++-- commands/account/next-folder.go | 2 +- commands/account/next-result.go | 2 +- commands/account/next.go | 2 +- commands/account/rmdir.go | 4 ++-- commands/account/search.go | 2 +- commands/account/select.go | 2 +- commands/account/sort.go | 4 ++-- commands/account/view.go | 4 ++-- commands/cd.go | 2 +- commands/choose.go | 2 +- commands/commands.go | 2 +- commands/compose/abort.go | 2 +- commands/compose/attach.go | 4 ++-- commands/compose/cc-bcc.go | 2 +- commands/compose/compose.go | 2 +- commands/compose/detach.go | 2 +- commands/compose/edit.go | 2 +- commands/compose/header.go | 4 ++-- commands/compose/next-field.go | 2 +- commands/compose/postpone.go | 6 +++--- commands/compose/send.go | 8 ++++---- commands/ct.go | 2 +- commands/exec.go | 2 +- commands/help.go | 2 +- commands/move-tab.go | 2 +- commands/msg/archive.go | 8 ++++---- commands/msg/copy.go | 6 +++--- commands/msg/delete.go | 8 ++++---- commands/msg/forward.go | 10 +++++----- commands/msg/mark.go | 2 +- commands/msg/modify-labels.go | 6 +++--- commands/msg/move.go | 6 +++--- commands/msg/msg.go | 2 +- commands/msg/pipe.go | 6 +++--- commands/msg/read.go | 8 ++++---- commands/msg/recall.go | 8 ++++---- commands/msg/reply.go | 8 ++++---- commands/msg/unsubscribe.go | 6 +++--- commands/msg/utils.go | 8 ++++---- commands/msgview/close.go | 2 +- commands/msgview/msgview.go | 2 +- commands/msgview/next-part.go | 2 +- commands/msgview/next.go | 6 +++--- commands/msgview/open.go | 4 ++-- commands/msgview/save.go | 6 +++--- commands/msgview/toggle-headers.go | 2 +- commands/new-account.go | 2 +- commands/next-tab.go | 2 +- commands/pin-tab.go | 2 +- commands/prompt.go | 2 +- commands/pwd.go | 2 +- commands/quit.go | 2 +- commands/set.go | 2 +- commands/term.go | 2 +- commands/terminal/close.go | 2 +- commands/terminal/terminal.go | 2 +- commands/util.go | 6 +++--- 62 files changed, 114 insertions(+), 114 deletions(-) (limited to 'commands') 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" ) -- cgit v1.2.3