1
0
Fork 0
mirror of https://git.sr.ht/~rjarry/aerc synced 2025-02-22 23:23:57 +01:00
aerc/commands/msgview/next-part.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

38 lines
729 B
Go

package msgview
import (
"git.sr.ht/~rjarry/aerc/app"
"git.sr.ht/~rjarry/aerc/commands"
)
type NextPrevPart struct {
Offset int `opt:"n" default:"1"`
}
func init() {
commands.Register(NextPrevPart{})
}
func (NextPrevPart) Description() string {
return "Cycle between message parts being shown."
}
func (NextPrevPart) Context() commands.CommandContext {
return commands.MESSAGE_VIEWER
}
func (NextPrevPart) Aliases() []string {
return []string{"next-part", "prev-part"}
}
func (np NextPrevPart) Execute(args []string) error {
mv, _ := app.SelectedTabContent().(*app.MessageViewer)
for n := 0; n < np.Offset; n++ {
if args[0] == "prev-part" {
mv.PreviousPart()
} else {
mv.NextPart()
}
}
return nil
}