aboutsummaryrefslogtreecommitdiff
path: root/commands/msg/move.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/move.go')
-rw-r--r--commands/msg/move.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go
index b7d52ff..2f8c61e 100644
--- a/commands/msg/move.go
+++ b/commands/msg/move.go
@@ -18,15 +18,15 @@ func init() {
register(Move{})
}
-func (_ Move) Aliases() []string {
+func (Move) Aliases() []string {
return []string{"mv", "move"}
}
-func (_ Move) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Move) Complete(aerc *widgets.Aerc, args []string) []string {
return commands.GetFolders(aerc, args)
}
-func (_ Move) Execute(aerc *widgets.Aerc, args []string) error {
+func (Move) Execute(aerc *widgets.Aerc, args []string) error {
opts, optind, err := getopt.Getopts(args, "p")
if err != nil {
return err