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