aerc/commands/pwd.go
Reto Brunner f06d683688 Remove duration from the status methods
We always set 10 seconds anyhow, might as well do that without repeating ourselfs.
2020-05-27 08:11:40 +02:00

35 lines
534 B
Go

package commands
import (
"errors"
"os"
"git.sr.ht/~sircmpwn/aerc/widgets"
)
type PrintWorkDir struct{}
func init() {
register(PrintWorkDir{})
}
func (PrintWorkDir) Aliases() []string {
return []string{"pwd"}
}
func (PrintWorkDir) Complete(aerc *widgets.Aerc, args []string) []string {
return nil
}
func (PrintWorkDir) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 1 {
return errors.New("Usage: pwd")
}
pwd, err := os.Getwd()
if err != nil {
return err
}
aerc.PushStatus(pwd)
return nil
}