diff options
Diffstat (limited to 'commands/msg/pipe.go')
-rw-r--r-- | commands/msg/pipe.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 77e5d96..2faa5de 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -23,15 +23,15 @@ func init() { register(Pipe{}) } -func (_ Pipe) Aliases() []string { +func (Pipe) Aliases() []string { return []string{"pipe"} } -func (_ Pipe) Complete(aerc *widgets.Aerc, args []string) []string { +func (Pipe) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ Pipe) Execute(aerc *widgets.Aerc, args []string) error { +func (Pipe) Execute(aerc *widgets.Aerc, args []string) error { var ( background bool pipeFull bool |