summary refs log tree commit diff stats
path: root/commands/compose/attach.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/compose/attach.go')
-rw-r--r--commands/compose/attach.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/commands/compose/attach.go b/commands/compose/attach.go
index 43aa32d..7501a33 100644
--- a/commands/compose/attach.go
+++ b/commands/compose/attach.go
@@ -5,6 +5,7 @@ import (
 	"os"
 	"time"
 
+	"git.sr.ht/~sircmpwn/aerc/commands"
 	"git.sr.ht/~sircmpwn/aerc/widgets"
 	"github.com/gdamore/tcell"
 	"github.com/mitchellh/go-homedir"
@@ -21,7 +22,12 @@ func (_ Attach) Aliases() []string {
 }
 
 func (_ Attach) Complete(aerc *widgets.Aerc, args []string) []string {
-	return nil
+	path := ""
+	if len(args) >= 1 {
+		path = args[0]
+	}
+
+	return commands.CompletePath(path)
 }
 
 func (_ Attach) Execute(aerc *widgets.Aerc, args []string) error {