mirror of
https://git.sr.ht/~rjarry/aerc
synced 2025-07-03 23:30:21 +02:00

Update the Command interface to include a Description() method. Implement the method for all commands using short descriptions inspired from the aerc(1) man page. Return the description values along with command names so that they can be displayed in completion choices. Implements: https://todo.sr.ht/~rjarry/aerc/271 Signed-off-by: Robin Jarry <robin@jarry.cc> Tested-by: Bojan Gabric <bojan@bojangabric.com> Tested-by: Jason Cox <me@jasoncarloscox.com> Acked-by: Tim Culverhouse <tim@timculverhouse.com>
41 lines
845 B
Go
41 lines
845 B
Go
package msg
|
|
|
|
import (
|
|
"git.sr.ht/~rjarry/aerc/commands"
|
|
"git.sr.ht/~rjarry/aerc/lib/state"
|
|
"git.sr.ht/~rjarry/aerc/lib/ui"
|
|
)
|
|
|
|
type ToggleThreads struct{}
|
|
|
|
func init() {
|
|
commands.Register(ToggleThreads{})
|
|
}
|
|
|
|
func (ToggleThreads) Description() string {
|
|
return "Toggle between message threading and the normal message list."
|
|
}
|
|
|
|
func (ToggleThreads) Context() commands.CommandContext {
|
|
return commands.MESSAGE_LIST | commands.MESSAGE_VIEWER
|
|
}
|
|
|
|
func (ToggleThreads) Aliases() []string {
|
|
return []string{"toggle-threads"}
|
|
}
|
|
|
|
func (ToggleThreads) Execute(args []string) error {
|
|
h := newHelper()
|
|
acct, err := h.account()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
store, err := h.store()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
store.SetThreadedView(!store.ThreadedView())
|
|
acct.SetStatus(state.Threading(store.ThreadedView()))
|
|
ui.Invalidate()
|
|
return nil
|
|
}
|