From 588a6c785b29e6f2f97b7655101789be90bafafb Mon Sep 17 00:00:00 2001 From: Amin Bandali Date: Sun, 19 May 2019 14:00:02 -0400 Subject: Implement :pwd command --- commands/pwd.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 commands/pwd.go (limited to 'commands/pwd.go') diff --git a/commands/pwd.go b/commands/pwd.go new file mode 100644 index 0000000..b4f3eb1 --- /dev/null +++ b/commands/pwd.go @@ -0,0 +1,25 @@ +package commands + +import ( + "errors" + "os" + "time" + + "git.sr.ht/~sircmpwn/aerc/widgets" +) + +func init() { + register("pwd", PrintWorkDirectory) +} + +func PrintWorkDirectory(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, 10*time.Second) + return nil +} -- cgit v1.2.3