aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/account/clear.go2
-rw-r--r--commands/msg/read.go4
-rw-r--r--config/config.go2
-rw-r--r--lib/msgstore.go4
-rw-r--r--worker/types/messages.go4
5 files changed, 8 insertions, 8 deletions
diff --git a/commands/account/clear.go b/commands/account/clear.go
index 263b5dea..838bfcc4 100644
--- a/commands/account/clear.go
+++ b/commands/account/clear.go
@@ -2,8 +2,8 @@ package account
import (
"errors"
- "time"
"git.sr.ht/~sircmpwn/aerc/widgets"
+ "time"
)
type Clear struct{}
diff --git a/commands/msg/read.go b/commands/msg/read.go
index 08881894..325b7760 100644
--- a/commands/msg/read.go
+++ b/commands/msg/read.go
@@ -1,9 +1,9 @@
package msg
import (
+ "fmt"
"sync"
"time"
- "fmt"
"git.sr.ht/~sircmpwn/getopt"
@@ -171,7 +171,7 @@ func (FlagMsg) Execute(aerc *widgets.Aerc, args []string) error {
go func() {
wg.Wait()
if success {
- aerc.PushStatus(actionName + " flag '" + flagName + "' successful", 10*time.Second)
+ aerc.PushStatus(actionName+" flag '"+flagName+"' successful", 10*time.Second)
}
}()
diff --git a/config/config.go b/config/config.go
index ce599440..00a52ce7 100644
--- a/config/config.go
+++ b/config/config.go
@@ -76,7 +76,7 @@ type AccountConfig struct {
Source string
SourceCredCmd string
Folders []string
- FoldersExclude []string
+ FoldersExclude []string
Params map[string]string
Outgoing string
OutgoingCredCmd string
diff --git a/lib/msgstore.go b/lib/msgstore.go
index d823fa5d..b95b68f3 100644
--- a/lib/msgstore.go
+++ b/lib/msgstore.go
@@ -347,8 +347,8 @@ func (store *MessageStore) Flag(uids []uint32, flag models.Flag,
store.worker.PostAction(&types.FlagMessages{
Enable: enable,
- Flag: flag,
- Uids: uids,
+ Flag: flag,
+ Uids: uids,
}, cb)
}
diff --git a/worker/types/messages.go b/worker/types/messages.go
index c0446671..374db81f 100644
--- a/worker/types/messages.go
+++ b/worker/types/messages.go
@@ -117,8 +117,8 @@ type DeleteMessages struct {
type FlagMessages struct {
Message
Enable bool
- Flag models.Flag
- Uids []uint32
+ Flag models.Flag
+ Uids []uint32
}
type AnsweredMessages struct {