diff options
Diffstat (limited to 'commands/pwd.go')
-rw-r--r-- | commands/pwd.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/pwd.go b/commands/pwd.go index 4903c29..d3f0e0c 100644 --- a/commands/pwd.go +++ b/commands/pwd.go @@ -14,15 +14,15 @@ func init() { register(PrintWorkDir{}) } -func (_ PrintWorkDir) Aliases() []string { +func (PrintWorkDir) Aliases() []string { return []string{"pwd"} } -func (_ PrintWorkDir) Complete(aerc *widgets.Aerc, args []string) []string { +func (PrintWorkDir) Complete(aerc *widgets.Aerc, args []string) []string { return nil } -func (_ PrintWorkDir) Execute(aerc *widgets.Aerc, args []string) error { +func (PrintWorkDir) Execute(aerc *widgets.Aerc, args []string) error { if len(args) != 1 { return errors.New("Usage: pwd") } |