diff options
author | Gregory Mullen <greg@cmdline.org> | 2019-07-03 09:54:10 -0700 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-07-04 11:28:04 -0400 |
commit | f9d26eef58ce2b9fa1e2443032c17c2ccc6afa36 (patch) | |
tree | 86ca1765c913f9c3285755a1ea3874110dd8da04 /commands/msg | |
parent | 8d9d94f0ee63216b50674d0857ef1f2c744737d5 (diff) | |
download | aerc-f9d26eef58ce2b9fa1e2443032c17c2ccc6afa36.tar.gz |
Add IMAP folder tab completion
Credit for this fix goes to Reto; I guess if we're not gonna be mutt we should probabaly do things correctly.
Diffstat (limited to 'commands/msg')
-rw-r--r-- | commands/msg/move.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go index 45199b6..c98157e 100644 --- a/commands/msg/move.go +++ b/commands/msg/move.go @@ -7,6 +7,7 @@ import ( "git.sr.ht/~sircmpwn/getopt" "github.com/gdamore/tcell" + "git.sr.ht/~sircmpwn/aerc/commands" "git.sr.ht/~sircmpwn/aerc/widgets" "git.sr.ht/~sircmpwn/aerc/worker/types" ) @@ -22,7 +23,7 @@ func (_ Move) Aliases() []string { } func (_ Move) Complete(aerc *widgets.Aerc, args []string) []string { - return nil + return commands.GetFolders(aerc, args) } func (_ Move) Execute(aerc *widgets.Aerc, args []string) error { |