aboutsummaryrefslogtreecommitdiff
path: root/commands/cd.go
diff options
context:
space:
mode:
authorGregory Mullen <greg@cmdline.org>2019-06-27 10:33:11 -0700
committerDrew DeVault <sir@cmpwn.com>2019-06-29 14:24:19 -0400
commit2a0961701c4cabecc53d134ed1782e5612e64580 (patch)
tree57952ac82fb7104113ca7fc0e25dc3d225f77ea7 /commands/cd.go
parent177651bddab145c8a56cdfeb0d57b5fd95a6d0e2 (diff)
Implement basic tab completion support
Tab completion currently only works on commands. Contextual completion will be added in the future.
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]")
}