aboutsummaryrefslogtreecommitdiff
path: root/commands/account/cf.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/cf.go')
-rw-r--r--commands/account/cf.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/account/cf.go b/commands/account/cf.go
index f318374..cbef308 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
@@ -19,15 +19,15 @@ func init() {
register(ChangeFolder{})
}
-func (_ ChangeFolder) Aliases() []string {
+func (ChangeFolder) Aliases() []string {
return []string{"cf"}
}
-func (_ ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string {
+func (ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string {
return commands.GetFolders(aerc, args)
}
-func (_ ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error {
+func (ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) < 2 {
return errors.New("Usage: cf <folder>")
}