Rename :delete-message et al to :delete et al
This commit is contained in:
parent
fa5d8d7a00
commit
455c6f0b77
5 changed files with 20 additions and 16 deletions
commands/account
30
commands/account/view.go
Normal file
30
commands/account/view.go
Normal file
|
@ -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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue