2019-03-21 21:30:23 +01:00
|
|
|
package account
|
2019-03-16 03:01:20 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"strconv"
|
|
|
|
|
2019-05-18 02:57:10 +02:00
|
|
|
"git.sr.ht/~sircmpwn/aerc/widgets"
|
2019-03-16 03:01:20 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-05-20 00:25:38 +02:00
|
|
|
register("select", SelectMessage)
|
2019-03-21 21:30:23 +01:00
|
|
|
register("select-message", SelectMessage)
|
2019-03-16 03:01:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func SelectMessage(aerc *widgets.Aerc, args []string) error {
|
|
|
|
if len(args) != 2 {
|
|
|
|
return errors.New("Usage: :select-message <n>")
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
n int = 1
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
if len(args) > 1 {
|
|
|
|
n, err = strconv.Atoi(args[1])
|
|
|
|
if err != nil {
|
|
|
|
return errors.New("Usage: :select-message <n>")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
acct := aerc.SelectedAccount()
|
2019-03-17 19:57:05 +01:00
|
|
|
if acct == nil {
|
|
|
|
return errors.New("No account selected")
|
|
|
|
}
|
2019-04-17 01:48:05 +02:00
|
|
|
if acct.Messages().Empty() {
|
|
|
|
return nil
|
|
|
|
}
|
2019-03-16 03:01:20 +01:00
|
|
|
acct.Messages().Select(n)
|
|
|
|
return nil
|
|
|
|
}
|