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