2a0961701c
Tab completion currently only works on commands. Contextual completion will be added in the future.
42 lines
842 B
Go
42 lines
842 B
Go
package account
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
|
|
"git.sr.ht/~sircmpwn/aerc/commands"
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
|
)
|
|
|
|
type Pipe struct{}
|
|
|
|
func init() {
|
|
register(Pipe{})
|
|
}
|
|
|
|
func (_ Pipe) Aliases() []string {
|
|
return []string{"pipe"}
|
|
}
|
|
|
|
func (_ Pipe) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil
|
|
}
|
|
|
|
func (_ Pipe) Execute(aerc *widgets.Aerc, args []string) error {
|
|
if len(args) < 2 {
|
|
return errors.New("Usage: :pipe <cmd> [args...]")
|
|
}
|
|
acct := aerc.SelectedAccount()
|
|
store := acct.Messages().Store()
|
|
msg := acct.Messages().Selected()
|
|
store.FetchFull([]uint32{msg.Uid}, func(reader io.Reader) {
|
|
term, err := commands.QuickTerm(aerc, args[1:], reader)
|
|
if err != nil {
|
|
aerc.PushError(" " + err.Error())
|
|
return
|
|
}
|
|
name := args[1] + " <" + msg.Envelope.Subject
|
|
aerc.NewTab(term, name)
|
|
})
|
|
return nil
|
|
}
|