aerc/commands/account/cf.go

58 lines
1.2 KiB
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"
"strings"
2019-03-15 15:47:09 +01:00
"git.sr.ht/~rjarry/aerc/commands"
"git.sr.ht/~rjarry/aerc/lib/statusline"
"git.sr.ht/~rjarry/aerc/widgets"
2019-03-15 15:47:09 +01:00
)
var history map[string]string
2019-03-15 15:47:09 +01:00
type ChangeFolder struct{}
2019-03-15 15:47:09 +01:00
func init() {
history = make(map[string]string)
register(ChangeFolder{})
}
func (ChangeFolder) Aliases() []string {
return []string{"cf"}
}
func (ChangeFolder) Complete(aerc *widgets.Aerc, args []string) []string {
return commands.GetFolders(aerc, args)
2019-03-15 15:47:09 +01:00
}
func (ChangeFolder) Execute(aerc *widgets.Aerc, args []string) error {
if len(args) == 1 {
2019-03-15 15:47:09 +01:00
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()
joinedArgs := strings.Join(args[1:], " ")
if joinedArgs == "-" {
2019-03-15 15:47:09 +01:00
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(joinedArgs)
2019-03-15 15:47:09 +01:00
}
history[acct.Name()] = previous
// reset store filtering if we switched folders
store := acct.Store()
if store != nil {
store.ApplyClear()
acct.SetStatus(statusline.SearchFilterClear())
}
2019-03-15 15:47:09 +01:00
return nil
}