aboutsummaryrefslogtreecommitdiff
path: root/commands/choose.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/choose.go')
-rw-r--r--commands/choose.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/choose.go b/commands/choose.go
index 3f1410cf..6810ed1f 100644
--- a/commands/choose.go
+++ b/commands/choose.go
@@ -2,7 +2,6 @@ package commands
import (
"fmt"
- "strings"
"git.sr.ht/~rjarry/aerc/app"
)
@@ -34,7 +33,7 @@ func (Choose) Execute(args []string) error {
choices = append(choices, app.Choice{
Key: args[i+2],
Text: args[i+3],
- Command: strings.Split(args[i+4], " "),
+ Command: args[i+4],
})
}