From 598e4a5803578ab3e291f232d6aad31b4efd8ea4 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Mon, 9 Oct 2023 13:52:20 +0200 Subject: 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 Acked-by: Moritz Poldrack --- commands/compose/multipart.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'commands/compose/multipart.go') diff --git a/commands/compose/multipart.go b/commands/compose/multipart.go index 32801965..13ee69e5 100644 --- a/commands/compose/multipart.go +++ b/commands/compose/multipart.go @@ -4,9 +4,9 @@ import ( "bytes" "fmt" + "git.sr.ht/~rjarry/aerc/app" "git.sr.ht/~rjarry/aerc/commands" "git.sr.ht/~rjarry/aerc/config" - "git.sr.ht/~rjarry/aerc/widgets" "git.sr.ht/~sircmpwn/getopt" ) @@ -20,7 +20,7 @@ func (Multipart) Aliases() []string { return []string{"multipart"} } -func (Multipart) Complete(aerc *widgets.Aerc, args []string) []string { +func (Multipart) Complete(aerc *app.Aerc, args []string) []string { var completions []string completions = append(completions, "-d") for mime := range config.Converters { @@ -29,8 +29,8 @@ func (Multipart) Complete(aerc *widgets.Aerc, args []string) []string { return commands.CompletionFromList(aerc, completions, args) } -func (a Multipart) Execute(aerc *widgets.Aerc, args []string) error { - composer, ok := aerc.SelectedTabContent().(*widgets.Composer) +func (a Multipart) Execute(aerc *app.Aerc, args []string) error { + composer, ok := aerc.SelectedTabContent().(*app.Composer) if !ok { return fmt.Errorf(":multipart is only available on the compose::review screen") } -- cgit