summaryrefslogtreecommitdiff
path: root/commands/account
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/account
parentb2e9df623f638ecda539ec69f30a31b6693df2d1 (diff)
downloadaerc-0d645bcebda8d764c4f21f71ded1e3627d6e8837.zip
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/account')
-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
13 files changed, 19 insertions, 19 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{}