diff options
Diffstat (limited to 'commands')
62 files changed, 114 insertions, 114 deletions
diff --git a/commands/account/account.go b/commands/account/account.go index 9c900872..4731c19a 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 65b8810b..ad93fdf6 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 838bfcc4..3fecc132 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 b33acf5a..f48fa691 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 d3a62269..8a260c05 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 037cd313..e3541e52 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 fe835eab..daa7af3c 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 427f5637..c9c26809 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 9cd974ff..be493777 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 607dc24c..9a9244d4 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 b41b2346..28aedfa5 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 62025785..89a5e386 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 d52ce5b9..4f59d947 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 fa487e77..edfc1795 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 6fa91be1..3b3af794 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 0c761d12..37778356 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 74d03953..d4a4699e 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 37f49dfa..50abda5f 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 ce622429..5540f838 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 d61696e2..563dcd1b 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 b48159d0..31ac082a 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 e7880225..375f3619 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 e4d7c40e..5780aa8b 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 a81852e9..69b33e55 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 6d6c8e78..03a8608e 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 849182d5..12bf155c 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 8b6e8a80..7764cab8 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 b1966c23..317bf07a 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 b27c2f03..5bc8f0e2 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 9f0293c7..4151bd74 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 59ca9859..e73e42cf 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 8e5bad0d..3b3dd725 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 677a666d..34eac72f 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 ec89bfac..9cc13c00 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 3955f4a1..d6beae46 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 082742b4..ca3ccf7b 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 31e243ab..098227e3 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 ecf21029..7b6fb129 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 0e22fd01..58764fbf 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 95becf78..d2484d45 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 44f8ddf4..61c4c39c 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 2e4a21a7..8b21995c 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 cf3e4a86..a489ec58 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 cad0f82e..212fc75a 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 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{} diff --git a/commands/new-account.go b/commands/new-account.go index ff585c0b..77ca3f80 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 fc668f15..9d6a09ba 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 164a68b5..9a626614 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 2d6d01de..6714eb30 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 d3f0e0c1..624258ce 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 63bc94a9..fbec2b7d 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 cc6333ee..0259240f 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 c28c7d08..924f71c9 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 aca0166a..95ee94c6 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 710d7967..c93f80ec 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 8e2bdbc3..ffc5ed6c 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" ) |