aboutsummaryrefslogtreecommitdiffstats
path: root/commands/account/export-mbox.go
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-12-22 15:51:14 +0100
committerRobin Jarry <robin@jarry.cc>2024-01-17 11:52:59 +0100
commit3622f7a99e91bfe38eab9e91dc982aafa00fe211 (patch)
tree071af82a070719d2b4f46dca430a892941f70214 /commands/account/export-mbox.go
parent765761c5bf49799e7d74535b9727062c869fc358 (diff)
downloadaerc-3622f7a99e91bfe38eab9e91dc982aafa00fe211.tar.gz
cd: fix completion of folders with a space
Folders that contain spaces are surrounded by quotes. They can never end with '/'. Hence they are never returned in the completion results. Update CompletePath with an additional onlyDirs argument to take care of this before quotes are inserted. Fixes: abe228b14d97 ("commands: use completion from go-opt") Fixes: https://todo.sr.ht/~rjarry/aerc/204 Reported-by: Bence Ferdinandy <bence@ferdinandy.com> Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Bence Ferdinandy <bence@ferdinandy.com>
Diffstat (limited to 'commands/account/export-mbox.go')
-rw-r--r--commands/account/export-mbox.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/export-mbox.go b/commands/account/export-mbox.go
index 2eed570a..6a36d375 100644
--- a/commands/account/export-mbox.go
+++ b/commands/account/export-mbox.go
@@ -30,7 +30,7 @@ func (ExportMbox) Aliases() []string {
}
func (*ExportMbox) CompleteFilename(arg string) []string {
- return commands.CompletePath(arg)
+ return commands.CompletePath(arg, false)
}
func (e ExportMbox) Execute(args []string) error {