aboutsummaryrefslogtreecommitdiffstats
path: root/commands/prompt.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/prompt.go')
-rw-r--r--commands/prompt.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/commands/prompt.go b/commands/prompt.go
index f9f5fcc0..0d10ffa0 100644
--- a/commands/prompt.go
+++ b/commands/prompt.go
@@ -4,6 +4,8 @@ import (
"fmt"
"strings"
+ "git.sr.ht/~rjarry/go-opt"
+
"git.sr.ht/~rjarry/aerc/app"
)
@@ -75,7 +77,7 @@ func (Prompt) Execute(args []string) error {
}
prompt := args[1]
- cmd := args[2:]
- app.RegisterPrompt(prompt, cmd)
+ cmd := opt.QuoteArgs(args[2:]...)
+ app.RegisterPrompt(prompt, cmd.String())
return nil
}