aboutsummaryrefslogtreecommitdiff
path: root/commands/cd.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/cd.go')
-rw-r--r--commands/cd.go14
1 files changed, 12 insertions, 2 deletions
diff --git a/commands/cd.go b/commands/cd.go
index fb495d7..8c9cb21 100644
--- a/commands/cd.go
+++ b/commands/cd.go
@@ -12,11 +12,21 @@ var (
previousDir string
)
+type ChangeDirectory struct{}
+
func init() {
- register("cd", ChangeDirectory)
+ register(ChangeDirectory{})
+}
+
+func (_ ChangeDirectory) Aliases() []string {
+ return []string{"cd"}
+}
+
+func (_ ChangeDirectory) Complete(aerc *widgets.Aerc, args []string) []string {
+ return nil
}
-func ChangeDirectory(aerc *widgets.Aerc, args []string) error {
+func (_ ChangeDirectory) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) < 1 || len(args) > 2 {
return errors.New("Usage: cd [directory]")
}