1
0
Fork 0
mirror of https://git.sr.ht/~rjarry/aerc synced 2025-07-09 07:00:21 +02:00
aerc/commands/suspend.go
Robin Jarry 26033eaecf completion: add commands descriptions
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>
2024-10-23 10:22:51 +02:00

26 lines
402 B
Go

package commands
import "git.sr.ht/~rjarry/aerc/lib/ui"
type Suspend struct{}
func init() {
Register(Suspend{})
}
func (Suspend) Description() string {
return "Suspend the aerc process."
}
func (Suspend) Context() CommandContext {
return GLOBAL
}
func (Suspend) Aliases() []string {
return []string{"suspend"}
}
func (Suspend) Execute(args []string) error {
ui.QueueSuspend()
return nil
}