aboutsummaryrefslogblamecommitdiffstats
path: root/commands/msgview/next-part.go
blob: 77eb008d33449fa1137807412b6360dad391f8be (plain) (tree)
1
2
3
4
5
6
7
8
9


               
                                    

 


                                        
 
             
                                

 
                                        


                                                 
                                                     
                                                              
                                        







                                           
package msgview

import (
	"git.sr.ht/~rjarry/aerc/app"
)

type NextPrevPart struct {
	Offset int `opt:"n" default:"1"`
}

func init() {
	register(NextPrevPart{})
}

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
}