diff options
Diffstat (limited to 'commands/set.go')
-rw-r--r-- | commands/set.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/set.go b/commands/set.go index f5366ff..1d20f06 100644 --- a/commands/set.go +++ b/commands/set.go @@ -19,12 +19,12 @@ func init() { register(Set{}) } -func (_ Set) Aliases() []string { +func (Set) Aliases() []string { return []string{"set"} } -func (_ Set) Complete(aerc *widgets.Aerc, args []string) []string { +func (Set) Complete(aerc *widgets.Aerc, args []string) []string { return nil } @@ -64,6 +64,6 @@ func SetCore(aerc *widgets.Aerc, args []string) error { return nil } -func (_ Set) Execute(aerc *widgets.Aerc, args []string) error { +func (Set) Execute(aerc *widgets.Aerc, args []string) error { return SetCore(aerc, args) } |