aboutsummaryrefslogtreecommitdiff
path: root/commands/account/view.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/account/view.go')
-rw-r--r--commands/account/view.go30
1 files changed, 30 insertions, 0 deletions
diff --git a/commands/account/view.go b/commands/account/view.go
new file mode 100644
index 0000000..40abec3
--- /dev/null
+++ b/commands/account/view.go
@@ -0,0 +1,30 @@
+package account
+
+import (
+ "errors"
+
+ "git.sr.ht/~sircmpwn/aerc/widgets"
+)
+
+func init() {
+ register("view", ViewMessage)
+ register("view-message", ViewMessage)
+}
+
+func ViewMessage(aerc *widgets.Aerc, args []string) error {
+ if len(args) != 1 {
+ return errors.New("Usage: view-message")
+ }
+ acct := aerc.SelectedAccount()
+ if acct.Messages().Empty() {
+ return nil
+ }
+ store := acct.Messages().Store()
+ msg := acct.Messages().Selected()
+ if msg == nil {
+ return nil
+ }
+ viewer := widgets.NewMessageViewer(aerc.Config(), store, msg)
+ aerc.NewTab(viewer, msg.Envelope.Subject)
+ return nil
+}