Implement :{next,prev}-field in compose view
This commit is contained in:
parent
2a4dd5cb87
commit
f37508a539
6 changed files with 70 additions and 5 deletions
commands/compose
16
commands/compose/compose.go
Normal file
16
commands/compose/compose.go
Normal file
|
@ -0,0 +1,16 @@
|
|||
package compose
|
||||
|
||||
import (
|
||||
"git.sr.ht/~sircmpwn/aerc2/commands"
|
||||
)
|
||||
|
||||
var (
|
||||
ComposeCommands *commands.Commands
|
||||
)
|
||||
|
||||
func register(name string, cmd commands.AercCommand) {
|
||||
if ComposeCommands == nil {
|
||||
ComposeCommands = commands.NewCommands()
|
||||
}
|
||||
ComposeCommands.Register(name, cmd)
|
||||
}
|
30
commands/compose/next-field.go
Normal file
30
commands/compose/next-field.go
Normal file
|
@ -0,0 +1,30 @@
|
|||
package compose
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
|
||||
"git.sr.ht/~sircmpwn/aerc2/widgets"
|
||||
)
|
||||
|
||||
func init() {
|
||||
register("next-field", NextPrevField)
|
||||
register("prev-field", NextPrevField)
|
||||
}
|
||||
|
||||
func nextPrevFieldUsage(cmd string) error {
|
||||
return errors.New(fmt.Sprintf("Usage: %s", cmd))
|
||||
}
|
||||
|
||||
func NextPrevField(aerc *widgets.Aerc, args []string) error {
|
||||
if len(args) > 2 {
|
||||
return nextPrevFieldUsage(args[0])
|
||||
}
|
||||
composer, _ := aerc.SelectedTab().(*widgets.Composer)
|
||||
if args[0] == "prev-field" {
|
||||
composer.PrevField()
|
||||
} else {
|
||||
composer.NextField()
|
||||
}
|
||||
return nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue