aboutsummaryrefslogtreecommitdiff
path: root/commands/account
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-17 20:57:10 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-17 20:57:10 -0400
commit98da4c9509d03f8ffe48b9c66b9c3ce8a0f2f942 (patch)
treedcbd0072649785e8b99104fd1865aecba1eacdb0 /commands/account
parent9c10a90cac7037d14b8b0d9d6a0ac2584199278b (diff)
s/aerc2/aerc/g
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/account.go2
-rw-r--r--commands/account/cf.go2
-rw-r--r--commands/account/compose.go2
-rw-r--r--commands/account/copy.go4
-rw-r--r--commands/account/delete-message.go4
-rw-r--r--commands/account/move.go4
-rw-r--r--commands/account/next-folder.go2
-rw-r--r--commands/account/next-message.go2
-rw-r--r--commands/account/pipe.go2
-rw-r--r--commands/account/reply.go2
-rw-r--r--commands/account/select-message.go2
-rw-r--r--commands/account/view-message.go2
12 files changed, 15 insertions, 15 deletions
diff --git a/commands/account/account.go b/commands/account/account.go
index 918d962..c590c8a 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 3d12b5c..2816473 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 1ffd2e2..d77689e 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 2a811c8..da26fec 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 2461d64..2ad470b 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 f84427e..d4978ac 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 1b59af1..6ad3d54 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 d2c006f..f13ea5a 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 f44de30..9461d17 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 06f93f1..e5b7679 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 c9e4f8a..bd44c1b 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 3697aa7..cf2baaa 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() {