aboutsummaryrefslogtreecommitdiff
path: root/commands/msgview/next.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msgview/next.go')
-rw-r--r--commands/msgview/next.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msgview/next.go b/commands/msgview/next.go
index 647aafb..3943ac9 100644
--- a/commands/msgview/next.go
+++ b/commands/msgview/next.go
@@ -11,16 +11,16 @@ func init() {
register(NextPrevMsg{})
}
-func (_ NextPrevMsg) Aliases() []string {
+func (NextPrevMsg) Aliases() []string {
return []string{"next", "next-message", "prev", "prev-message"}
}
-func (_ NextPrevMsg) Complete(aerc *widgets.Aerc, args []string) []string {
+func (NextPrevMsg) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
-func (_ NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
err, n, pct := account.ParseNextPrevMessage(args)
+func (NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
if err != nil {
return err
}