aboutsummaryrefslogtreecommitdiff
path: root/commands/term.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/term.go')
-rw-r--r--commands/term.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/term.go b/commands/term.go
index 8575019..459f405 100644
--- a/commands/term.go
+++ b/commands/term.go
@@ -16,11 +16,11 @@ func init() {
register(Term{})
}
-func (_ Term) Aliases() []string {
+func (Term) Aliases() []string {
return []string{"terminal", "term"}
}
-func (_ Term) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Term) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
@@ -55,6 +55,6 @@ func TermCore(aerc *widgets.Aerc, args []string) error {
return nil
}
-func (_ Term) Execute(aerc *widgets.Aerc, args []string) error {
+func (Term) Execute(aerc *widgets.Aerc, args []string) error {
return TermCore(aerc, args)
}