aboutsummaryrefslogtreecommitdiffstats
path: root/commands/eml.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/eml.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/eml.go')
-rw-r--r--commands/eml.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/commands/eml.go b/commands/eml.go
index 00380763..81e578d3 100644
--- a/commands/eml.go
+++ b/commands/eml.go
@@ -7,8 +7,8 @@ import (
"os"
"strings"
+ "git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/lib"
- "git.sr.ht/~rjarry/aerc/widgets"
)
type Eml struct{}
@@ -21,11 +21,11 @@ func (Eml) Aliases() []string {
return []string{"eml", "preview"}
}
-func (Eml) Complete(aerc *widgets.Aerc, args []string) []string {
+func (Eml) Complete(aerc *app.Aerc, args []string) []string {
return CompletePath(strings.Join(args, " "))
}
-func (Eml) Execute(aerc *widgets.Aerc, args []string) error {
+func (Eml) Execute(aerc *app.Aerc, args []string) error {
acct := aerc.SelectedAccount()
if acct == nil {
return fmt.Errorf("no account selected")
@@ -43,7 +43,7 @@ func (Eml) Execute(aerc *widgets.Aerc, args []string) error {
aerc.PushError(err.Error())
return
}
- msgView := widgets.NewMessageViewer(acct, view)
+ msgView := app.NewMessageViewer(acct, view)
aerc.NewTab(msgView,
view.MessageInfo().Envelope.Subject)
})
@@ -51,10 +51,10 @@ func (Eml) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) == 1 {
switch tab := aerc.SelectedTabContent().(type) {
- case *widgets.MessageViewer:
+ case *app.MessageViewer:
part := tab.SelectedMessagePart()
tab.MessageView().FetchBodyPart(part.Index, showEml)
- case *widgets.Composer:
+ case *app.Composer:
var buf bytes.Buffer
h, err := tab.PrepareHeader()
if err != nil {