diff options
author | Robin Jarry <robin@jarry.cc> | 2023-12-22 15:51:14 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-01-17 11:52:59 +0100 |
commit | 3622f7a99e91bfe38eab9e91dc982aafa00fe211 (patch) | |
tree | 071af82a070719d2b4f46dca430a892941f70214 /commands/account/import-mbox.go | |
parent | 765761c5bf49799e7d74535b9727062c869fc358 (diff) | |
download | aerc-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/import-mbox.go')
-rw-r--r-- | commands/account/import-mbox.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/import-mbox.go b/commands/account/import-mbox.go index e326edce..c38aeb8f 100644 --- a/commands/account/import-mbox.go +++ b/commands/account/import-mbox.go @@ -31,7 +31,7 @@ func (ImportMbox) Aliases() []string { } func (*ImportMbox) CompleteFilename(arg string) []string { - return commands.CompletePath(arg) + return commands.CompletePath(arg, false) } func (i ImportMbox) Execute(args []string) error { |