aerc/commands/account/cf.go

39 lines
726 B
Go
Raw Normal View History

2019-03-21 21:30:23 +01:00
package account
2019-03-15 15:47:09 +01:00
import (
"errors"
2019-05-18 02:57:10 +02:00
"git.sr.ht/~sircmpwn/aerc/widgets"
2019-03-15 15:47:09 +01:00
)
var (
history map[string]string
)
func init() {
history = make(map[string]string)
2019-03-21 21:30:23 +01:00
register("cf", ChangeFolder)
2019-03-15 15:47:09 +01:00
}
func ChangeFolder(aerc *widgets.Aerc, args []string) error {
if len(args) != 2 {
return errors.New("Usage: cf <folder>")
}
acct := aerc.SelectedAccount()
if acct == nil {
return errors.New("No account selected")
}
2019-03-15 15:47:09 +01:00
previous := acct.Directories().Selected()
if args[1] == "-" {
if dir, ok := history[acct.Name()]; ok {
acct.Directories().Select(dir)
} else {
return errors.New("No previous folder to return to")
}
} else {
acct.Directories().Select(args[1])
}
history[acct.Name()] = previous
return nil
}