aboutsummaryrefslogtreecommitdiff
path: root/commands/account/select.go
diff options
context:
space:
mode:
authorGregory Mullen <greg@cmdline.org>2019-06-27 10:33:11 -0700
committerDrew DeVault <sir@cmpwn.com>2019-06-29 14:24:19 -0400
commit2a0961701c4cabecc53d134ed1782e5612e64580 (patch)
tree57952ac82fb7104113ca7fc0e25dc3d225f77ea7 /commands/account/select.go
parent177651bddab145c8a56cdfeb0d57b5fd95a6d0e2 (diff)
Implement basic tab completion support
Tab completion currently only works on commands. Contextual completion will be added in the future.
Diffstat (limited to 'commands/account/select.go')
-rw-r--r--commands/account/select.go15
1 files changed, 12 insertions, 3 deletions
diff --git a/commands/account/select.go b/commands/account/select.go
index 707f6c9..70e08ac 100644
--- a/commands/account/select.go
+++ b/commands/account/select.go
@@ -7,12 +7,21 @@ import (
"git.sr.ht/~sircmpwn/aerc/widgets"
)
+type SelectMessage struct{}
+
func init() {
- register("select", SelectMessage)
- register("select-message", SelectMessage)
+ register(SelectMessage{})
+}
+
+func (_ SelectMessage) Aliases() []string {
+ return []string{"select", "select-message"}
+}
+
+func (_ SelectMessage) Complete(aerc *widgets.Aerc, args []string) []string {
+ return nil
}
-func SelectMessage(aerc *widgets.Aerc, args []string) error {
+func (_ SelectMessage) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) != 2 {
return errors.New("Usage: :select-message <n>")
}