diff options
author | Bence Ferdinandy <bence@ferdinandy.com> | 2024-06-21 21:55:33 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-06-23 22:13:30 +0200 |
commit | e2a9cd0881593c3b3a24863ceb535367c5570888 (patch) | |
tree | 1b8310bb83f0c9f8f6f1504e9d9e17674ac57b55 /commands/account/rmdir.go | |
parent | a37ae231061e027233dc159900846f75c32a6d18 (diff) | |
download | aerc-e2a9cd0881593c3b3a24863ceb535367c5570888.tar.gz |
query: allow forcing overwrite of existing folder
Currently, when using :query the user is forced to create a new folder
for every query, since aerc doesn't allow overwriting an existing
folder. Actually, "overwriting" an existing folder with a query is
a non-destructive operation in the sense, that the underlying maildir is
not touched, the only thing lost is the state in aerc. The current
behaviour doesn't allow for a simple `:query -n query ` type of binding.
Allow overwriting an existing folder with the -f flag.
Changelog-added: Allow using existing directory name with `:query -f`.
Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/account/rmdir.go')
-rw-r--r-- | commands/account/rmdir.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/account/rmdir.go b/commands/account/rmdir.go index 22e78a69..b08a2a1e 100644 --- a/commands/account/rmdir.go +++ b/commands/account/rmdir.go @@ -89,7 +89,7 @@ func (r RemoveDir) Execute(args []string) error { return errors.New("No directory to move to afterwards!") } - reopenCurrentDir := func() { acct.Directories().Open(curDir, "", 0, nil) } + reopenCurrentDir := func() { acct.Directories().Open(curDir, "", 0, nil, false) } acct.Directories().Open(newDir, "", 0, func(msg types.WorkerMessage) { switch msg.(type) { @@ -117,7 +117,7 @@ func (r RemoveDir) Execute(args []string) error { reopenCurrentDir() } }) - }) + }, false) return nil } |