mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-07-06 11:00:21 +02:00

Update the Command interface to include a Description() method. Implement the method for all commands using short descriptions inspired from the aerc(1) man page. Return the description values along with command names so that they can be displayed in completion choices. Implements: https://todo.sr.ht/~rjarry/aerc/271 Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Bojan Gabric <bojan@bojangabric.com> Tested-by: Jason Cox <me@jasoncarloscox.com> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
35 lines
536 B
Go
35 lines
536 B
Go
package commands
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"git.sr.ht/~rjarry/aerc/app"
|
|
)
|
|
|
|
type PrintWorkDir struct{}
|
|
|
|
func init() {
|
|
Register(PrintWorkDir{})
|
|
}
|
|
|
|
func (PrintWorkDir) Description() string {
|
|
return "Display aerc's current working directory."
|
|
}
|
|
|
|
func (PrintWorkDir) Context() CommandContext {
|
|
return GLOBAL
|
|
}
|
|
|
|
func (PrintWorkDir) Aliases() []string {
|
|
return []string{"pwd"}
|
|
}
|
|
|
|
func (PrintWorkDir) Execute(args []string) error {
|
|
pwd, err := os.Getwd()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
app.PushStatus(pwd, 10*time.Second)
|
|
return nil
|
|
}
|