mirror of https://git.sr.ht/~rjarry/aerc
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
794 B
Go
40 lines
794 B
Go
package account
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"git.sr.ht/~rjarry/aerc/app"
|
|
"git.sr.ht/~rjarry/aerc/commands"
|
|
)
|
|
|
|
type ExpandCollapseFolder struct{}
|
|
|
|
func init() {
|
|
commands.Register(ExpandCollapseFolder{})
|
|
}
|
|
|
|
func (ExpandCollapseFolder) Description() string {
|
|
return "Expand or collapse the current folder."
|
|
}
|
|
|
|
func (ExpandCollapseFolder) Context() commands.CommandContext {
|
|
return commands.MESSAGE_LIST
|
|
}
|
|
|
|
func (ExpandCollapseFolder) Aliases() []string {
|
|
return []string{"expand-folder", "collapse-folder"}
|
|
}
|
|
|
|
func (ExpandCollapseFolder) Execute(args []string) error {
|
|
acct := app.SelectedAccount()
|
|
if acct == nil {
|
|
return errors.New("No account selected")
|
|
}
|
|
if args[0] == "expand-folder" {
|
|
acct.Directories().ExpandFolder()
|
|
} else {
|
|
acct.Directories().CollapseFolder()
|
|
}
|
|
return nil
|
|
}
|