diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-17 20:57:10 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-17 20:57:10 -0400 |
commit | 98da4c9509d03f8ffe48b9c66b9c3ce8a0f2f942 (patch) | |
tree | dcbd0072649785e8b99104fd1865aecba1eacdb0 | |
parent | 9c10a90cac7037d14b8b0d9d6a0ac2584199278b (diff) | |
download | aerc-98da4c9509d03f8ffe48b9c66b9c3ce8a0f2f942.tar.gz |
s/aerc2/aerc/g
47 files changed, 76 insertions, 76 deletions
@@ -10,14 +10,14 @@ import ( "github.com/mattn/go-isatty" - "git.sr.ht/~sircmpwn/aerc2/commands" - "git.sr.ht/~sircmpwn/aerc2/commands/account" - "git.sr.ht/~sircmpwn/aerc2/commands/compose" - "git.sr.ht/~sircmpwn/aerc2/commands/msgview" - "git.sr.ht/~sircmpwn/aerc2/commands/terminal" - "git.sr.ht/~sircmpwn/aerc2/config" - libui "git.sr.ht/~sircmpwn/aerc2/lib/ui" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/commands" + "git.sr.ht/~sircmpwn/aerc/commands/account" + "git.sr.ht/~sircmpwn/aerc/commands/compose" + "git.sr.ht/~sircmpwn/aerc/commands/msgview" + "git.sr.ht/~sircmpwn/aerc/commands/terminal" + "git.sr.ht/~sircmpwn/aerc/config" + libui "git.sr.ht/~sircmpwn/aerc/lib/ui" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func getCommands(selected libui.Drawable) []*commands.Commands { diff --git a/commands/account/account.go b/commands/account/account.go index 918d962b..c590c8ae 100644 --- a/commands/account/account.go +++ b/commands/account/account.go @@ -1,7 +1,7 @@ package account import ( - "git.sr.ht/~sircmpwn/aerc2/commands" + "git.sr.ht/~sircmpwn/aerc/commands" ) var ( diff --git a/commands/account/cf.go b/commands/account/cf.go index 3d12b5c6..2816473a 100644 --- a/commands/account/cf.go +++ b/commands/account/cf.go @@ -3,7 +3,7 @@ package account import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) var ( diff --git a/commands/account/compose.go b/commands/account/compose.go index 1ffd2e26..d77689e0 100644 --- a/commands/account/compose.go +++ b/commands/account/compose.go @@ -3,7 +3,7 @@ package account import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/account/copy.go b/commands/account/copy.go index 2a811c83..da26fec0 100644 --- a/commands/account/copy.go +++ b/commands/account/copy.go @@ -6,8 +6,8 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/widgets" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func init() { diff --git a/commands/account/delete-message.go b/commands/account/delete-message.go index 2461d649..2ad470b7 100644 --- a/commands/account/delete-message.go +++ b/commands/account/delete-message.go @@ -6,8 +6,8 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/widgets" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func init() { diff --git a/commands/account/move.go b/commands/account/move.go index f84427e8..d4978ac0 100644 --- a/commands/account/move.go +++ b/commands/account/move.go @@ -6,8 +6,8 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/widgets" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func init() { diff --git a/commands/account/next-folder.go b/commands/account/next-folder.go index 1b59af11..6ad3d540 100644 --- a/commands/account/next-folder.go +++ b/commands/account/next-folder.go @@ -5,7 +5,7 @@ import ( "fmt" "strconv" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/account/next-message.go b/commands/account/next-message.go index d2c006fb..f13ea5a9 100644 --- a/commands/account/next-message.go +++ b/commands/account/next-message.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/account/pipe.go b/commands/account/pipe.go index f44de307..9461d175 100644 --- a/commands/account/pipe.go +++ b/commands/account/pipe.go @@ -6,7 +6,7 @@ import ( "os/exec" "time" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" "github.com/gdamore/tcell" "github.com/mattn/go-runewidth" diff --git a/commands/account/reply.go b/commands/account/reply.go index 06f93f15..e5b7679c 100644 --- a/commands/account/reply.go +++ b/commands/account/reply.go @@ -14,7 +14,7 @@ import ( "github.com/emersion/go-imap" "git.sr.ht/~sircmpwn/getopt" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/account/select-message.go b/commands/account/select-message.go index c9e4f8a5..bd44c1bd 100644 --- a/commands/account/select-message.go +++ b/commands/account/select-message.go @@ -4,7 +4,7 @@ import ( "errors" "strconv" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/account/view-message.go b/commands/account/view-message.go index 3697aa74..cf2baaa9 100644 --- a/commands/account/view-message.go +++ b/commands/account/view-message.go @@ -3,7 +3,7 @@ package account import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/cd.go b/commands/cd.go index bb06c235..3da15555 100644 --- a/commands/cd.go +++ b/commands/cd.go @@ -4,7 +4,7 @@ import ( "errors" "os" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" "github.com/mitchellh/go-homedir" ) diff --git a/commands/commands.go b/commands/commands.go index a2589f87..04462d2a 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -5,7 +5,7 @@ import ( "github.com/google/shlex" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) type AercCommand func(aerc *widgets.Aerc, args []string) error diff --git a/commands/compose/abort.go b/commands/compose/abort.go index 1cd297e8..c60793cd 100644 --- a/commands/compose/abort.go +++ b/commands/compose/abort.go @@ -3,7 +3,7 @@ package compose import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/compose/compose.go b/commands/compose/compose.go index ea533167..35a2ed7c 100644 --- a/commands/compose/compose.go +++ b/commands/compose/compose.go @@ -1,7 +1,7 @@ package compose import ( - "git.sr.ht/~sircmpwn/aerc2/commands" + "git.sr.ht/~sircmpwn/aerc/commands" ) var ( diff --git a/commands/compose/next-field.go b/commands/compose/next-field.go index 2c3b4140..a10aa32c 100644 --- a/commands/compose/next-field.go +++ b/commands/compose/next-field.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/compose/send.go b/commands/compose/send.go index 38d05bec..51ae4cee 100644 --- a/commands/compose/send.go +++ b/commands/compose/send.go @@ -15,8 +15,8 @@ import ( "github.com/gdamore/tcell" "github.com/miolini/datacounter" - "git.sr.ht/~sircmpwn/aerc2/widgets" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/widgets" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func init() { diff --git a/commands/msgview/close.go b/commands/msgview/close.go index 404bb1c1..e388f65d 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 e3db828a..f0e42ad1 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 ( diff --git a/commands/next-tab.go b/commands/next-tab.go index a9a77c2a..fb5b6645 100644 --- a/commands/next-tab.go +++ b/commands/next-tab.go @@ -5,7 +5,7 @@ import ( "fmt" "strconv" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/quit.go b/commands/quit.go index c0c387b5..c9d83b7e 100644 --- a/commands/quit.go +++ b/commands/quit.go @@ -3,7 +3,7 @@ package commands import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/term.go b/commands/term.go index 91ffebd7..3f70d677 100644 --- a/commands/term.go +++ b/commands/term.go @@ -4,7 +4,7 @@ import ( "os/exec" "time" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" "github.com/gdamore/tcell" "github.com/riywo/loginshell" diff --git a/commands/terminal/close.go b/commands/terminal/close.go index aee7f3e4..0ea7a5a9 100644 --- a/commands/terminal/close.go +++ b/commands/terminal/close.go @@ -3,7 +3,7 @@ package terminal import ( "errors" - "git.sr.ht/~sircmpwn/aerc2/widgets" + "git.sr.ht/~sircmpwn/aerc/widgets" ) func init() { diff --git a/commands/terminal/terminal.go b/commands/terminal/terminal.go index f438582f..fb1583f9 100644 --- a/commands/terminal/terminal.go +++ b/commands/terminal/terminal.go @@ -1,7 +1,7 @@ package terminal import ( - "git.sr.ht/~sircmpwn/aerc2/commands" + "git.sr.ht/~sircmpwn/aerc/commands" ) var ( @@ -1,4 +1,4 @@ -module git.sr.ht/~sircmpwn/aerc2 +module git.sr.ht/~sircmpwn/aerc require ( git.sr.ht/~sircmpwn/getopt v0.0.0-20190214165041-9a4f886f9fc7 diff --git a/lib/msgstore.go b/lib/msgstore.go index a0da2d81..fbffa0a7 100644 --- a/lib/msgstore.go +++ b/lib/msgstore.go @@ -7,7 +7,7 @@ import ( "github.com/emersion/go-imap" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) // Accesses to fields must be guarded by MessageStore.Lock/Unlock diff --git a/lib/ui/ui.go b/lib/ui/ui.go index 49e4dcd8..9d9a5dae 100644 --- a/lib/ui/ui.go +++ b/lib/ui/ui.go @@ -5,7 +5,7 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/config" + "git.sr.ht/~sircmpwn/aerc/config" ) type UI struct { diff --git a/widgets/account.go b/widgets/account.go index fa8c524c..afae1d21 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -6,11 +6,11 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/config" - "git.sr.ht/~sircmpwn/aerc2/lib" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" - "git.sr.ht/~sircmpwn/aerc2/worker" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/config" + "git.sr.ht/~sircmpwn/aerc/lib" + "git.sr.ht/~sircmpwn/aerc/lib/ui" + "git.sr.ht/~sircmpwn/aerc/worker" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) type AccountView struct { diff --git a/widgets/aerc.go b/widgets/aerc.go index 61d46457..e79e4679 100644 --- a/widgets/aerc.go +++ b/widgets/aerc.go @@ -6,9 +6,9 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/config" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" - libui "git.sr.ht/~sircmpwn/aerc2/lib/ui" + "git.sr.ht/~sircmpwn/aerc/config" + "git.sr.ht/~sircmpwn/aerc/lib/ui" + libui "git.sr.ht/~sircmpwn/aerc/lib/ui" ) type Aerc struct { diff --git a/widgets/compose.go b/widgets/compose.go index 31c0a2d7..96ee7e73 100644 --- a/widgets/compose.go +++ b/widgets/compose.go @@ -13,10 +13,10 @@ import ( "github.com/gdamore/tcell" "github.com/mattn/go-runewidth" - "git.sr.ht/~sircmpwn/aerc2/config" - "git.sr.ht/~sircmpwn/aerc2/lib" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/config" + "git.sr.ht/~sircmpwn/aerc/lib" + "git.sr.ht/~sircmpwn/aerc/lib/ui" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) type Composer struct { diff --git a/widgets/dirlist.go b/widgets/dirlist.go index 689eb774..1240e562 100644 --- a/widgets/dirlist.go +++ b/widgets/dirlist.go @@ -6,9 +6,9 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/config" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/config" + "git.sr.ht/~sircmpwn/aerc/lib/ui" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) type DirectoryList struct { diff --git a/widgets/exline.go b/widgets/exline.go index 7b7530de..ff18d13c 100644 --- a/widgets/exline.go +++ b/widgets/exline.go @@ -3,7 +3,7 @@ package widgets import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" + "git.sr.ht/~sircmpwn/aerc/lib/ui" ) type ExLine struct { diff --git a/widgets/msglist.go b/widgets/msglist.go index 6cf9b972..08f7ea4f 100644 --- a/widgets/msglist.go +++ b/widgets/msglist.go @@ -6,10 +6,10 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/config" - "git.sr.ht/~sircmpwn/aerc2/lib" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/config" + "git.sr.ht/~sircmpwn/aerc/lib" + "git.sr.ht/~sircmpwn/aerc/lib/ui" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) type MessageList struct { diff --git a/widgets/msgviewer.go b/widgets/msgviewer.go index 3eda27d4..3d7d9aa6 100644 --- a/widgets/msgviewer.go +++ b/widgets/msgviewer.go @@ -16,10 +16,10 @@ import ( "github.com/google/shlex" "github.com/mattn/go-runewidth" - "git.sr.ht/~sircmpwn/aerc2/config" - "git.sr.ht/~sircmpwn/aerc2/lib" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/config" + "git.sr.ht/~sircmpwn/aerc/lib" + "git.sr.ht/~sircmpwn/aerc/lib/ui" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) type MessageViewer struct { diff --git a/widgets/spinner.go b/widgets/spinner.go index 86158e6d..56f75cd4 100644 --- a/widgets/spinner.go +++ b/widgets/spinner.go @@ -6,7 +6,7 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" + "git.sr.ht/~sircmpwn/aerc/lib/ui" ) var ( diff --git a/widgets/status.go b/widgets/status.go index 344454ac..c7764f88 100644 --- a/widgets/status.go +++ b/widgets/status.go @@ -5,7 +5,7 @@ import ( "github.com/gdamore/tcell" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" + "git.sr.ht/~sircmpwn/aerc/lib/ui" ) type StatusLine struct { diff --git a/widgets/terminal.go b/widgets/terminal.go index ee99b601..a3615a5e 100644 --- a/widgets/terminal.go +++ b/widgets/terminal.go @@ -5,7 +5,7 @@ import ( "os" "os/exec" - "git.sr.ht/~sircmpwn/aerc2/lib/ui" + "git.sr.ht/~sircmpwn/aerc/lib/ui" "git.sr.ht/~sircmpwn/go-libvterm" "git.sr.ht/~sircmpwn/pty" diff --git a/worker/imap/fetch.go b/worker/imap/fetch.go index a799f2a5..e3d8fa30 100644 --- a/worker/imap/fetch.go +++ b/worker/imap/fetch.go @@ -3,7 +3,7 @@ package imap import ( "github.com/emersion/go-imap" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func (imapw *IMAPWorker) handleFetchMessageHeaders( diff --git a/worker/imap/flags.go b/worker/imap/flags.go index cb9b3b1e..bd368c11 100644 --- a/worker/imap/flags.go +++ b/worker/imap/flags.go @@ -3,7 +3,7 @@ package imap import ( "github.com/emersion/go-imap" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func (imapw *IMAPWorker) handleDeleteMessages(msg *types.DeleteMessages) { diff --git a/worker/imap/list.go b/worker/imap/list.go index 22addc3f..75f189fd 100644 --- a/worker/imap/list.go +++ b/worker/imap/list.go @@ -3,7 +3,7 @@ package imap import ( "github.com/emersion/go-imap" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func (imapw *IMAPWorker) handleListDirectories(msg *types.ListDirectories) { diff --git a/worker/imap/movecopy.go b/worker/imap/movecopy.go index 1234e602..6cf3fe14 100644 --- a/worker/imap/movecopy.go +++ b/worker/imap/movecopy.go @@ -3,7 +3,7 @@ package imap import ( "io" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func (imapw *IMAPWorker) handleCopyMessages(msg *types.CopyMessages) { diff --git a/worker/imap/open.go b/worker/imap/open.go index ab54e880..452c3099 100644 --- a/worker/imap/open.go +++ b/worker/imap/open.go @@ -3,7 +3,7 @@ package imap import ( "github.com/emersion/go-imap" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) func (imapw *IMAPWorker) handleOpenDirectory(msg *types.OpenDirectory) { diff --git a/worker/imap/worker.go b/worker/imap/worker.go index 5dce18e0..839a9a03 100644 --- a/worker/imap/worker.go +++ b/worker/imap/worker.go @@ -11,7 +11,7 @@ import ( "github.com/emersion/go-imap-idle" "github.com/emersion/go-imap/client" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/types" ) var errUnsupported = fmt.Errorf("unsupported command") diff --git a/worker/types/messages.go b/worker/types/messages.go index 8687b5ed..0cb6eebb 100644 --- a/worker/types/messages.go +++ b/worker/types/messages.go @@ -7,7 +7,7 @@ import ( "github.com/emersion/go-imap" - "git.sr.ht/~sircmpwn/aerc2/config" + "git.sr.ht/~sircmpwn/aerc/config" ) type WorkerMessage interface { diff --git a/worker/worker.go b/worker/worker.go index 29bb5603..2a430832 100644 --- a/worker/worker.go +++ b/worker/worker.go @@ -1,8 +1,8 @@ package worker import ( - "git.sr.ht/~sircmpwn/aerc2/worker/imap" - "git.sr.ht/~sircmpwn/aerc2/worker/types" + "git.sr.ht/~sircmpwn/aerc/worker/imap" + "git.sr.ht/~sircmpwn/aerc/worker/types" "fmt" "log" |