about summary refs log tree commit diff stats
path: root/commands/msg/copy.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/copy.go')
-rw-r--r--commands/msg/copy.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/msg/copy.go b/commands/msg/copy.go
index 398beae..d6b78d3 100644
--- a/commands/msg/copy.go
+++ b/commands/msg/copy.go
@@ -7,6 +7,7 @@ import (
 	"git.sr.ht/~sircmpwn/getopt"
 	"github.com/gdamore/tcell"
 
+	"git.sr.ht/~sircmpwn/aerc/commands"
 	"git.sr.ht/~sircmpwn/aerc/widgets"
 	"git.sr.ht/~sircmpwn/aerc/worker/types"
 )
@@ -22,7 +23,7 @@ func (Copy) Aliases() []string {
 }
 
 func (Copy) Complete(aerc *widgets.Aerc, args []string) []string {
-	return nil
+	return commands.GetFolders(aerc, args)
 }
 
 func (Copy) Execute(aerc *widgets.Aerc, args []string) error {