aboutsummaryrefslogtreecommitdiffstats
path: root/commands/choose.go
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-10-09 13:52:20 +0200
committerRobin Jarry <robin@jarry.cc>2023-10-10 11:37:56 +0200
commit598e4a5803578ab3e291f232d6aad31b4efd8ea4 (patch)
treec55e16d60e2c3eea2d6de27d1bac18db5670ec77 /commands/choose.go
parent61bca76423ee87bd59084a146eca71c6bae085e1 (diff)
downloadaerc-598e4a5803578ab3e291f232d6aad31b4efd8ea4.tar.gz
widgets: rename package to app
This is the central point of all aerc. Having it named widgets is confusing. Rename it to app. It will make a cleaner transition when making the app.Aerc object available globally in the next commit. Signed-off-by: Robin Jarry <robin@jarry.cc> Acked-by: Moritz Poldrack <moritz@poldrack.dev>
Diffstat (limited to 'commands/choose.go')
-rw-r--r--commands/choose.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/commands/choose.go b/commands/choose.go
index 3b3af794..64535ea6 100644
--- a/commands/choose.go
+++ b/commands/choose.go
@@ -4,7 +4,7 @@ import (
"fmt"
"strings"
- "git.sr.ht/~rjarry/aerc/widgets"
+ "git.sr.ht/~rjarry/aerc/app"
)
type Choose struct{}
@@ -17,21 +17,21 @@ func (Choose) Aliases() []string {
return []string{"choose"}
}
-func (Choose) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Choose) Complete(aerc *app.Aerc, args []string) []string {
return nil
}
-func (Choose) Execute(aerc *widgets.Aerc, args []string) error {
+func (Choose) Execute(aerc *app.Aerc, args []string) error {
if len(args) < 5 || len(args)%4 != 1 {
return chooseUsage(args[0])
}
- choices := []widgets.Choice{}
+ choices := []app.Choice{}
for i := 0; i+4 < len(args); i += 4 {
if args[i+1] != "-o" {
return chooseUsage(args[0])
}
- choices = append(choices, widgets.Choice{
+ choices = append(choices, app.Choice{
Key: args[i+2],
Text: args[i+3],
Command: strings.Split(args[i+4], " "),