aboutsummaryrefslogtreecommitdiff
path: root/commands/account/cf.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/cf.go')
-rw-r--r--commands/account/cf.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/account/cf.go b/commands/account/cf.go
index 197e956..6c928ea 100644
--- a/commands/account/cf.go
+++ b/commands/account/cf.go
@@ -3,6 +3,7 @@ package account
import (
"errors"
+ "git.sr.ht/~sircmpwn/aerc/commands"
"git.sr.ht/~sircmpwn/aerc/widgets"
)
@@ -22,7 +23,7 @@ func (_ ChangeFolder) Aliases() []string {
}
func (_ ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string {
- return nil
+ return commands.GetFolders(aerc, args)
}
func (_ ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error {