0d645bcebd
I'm not sure what are the implications but it seems required. Link: https://github.com/golang/go/issues/20883 Signed-off-by: Robin Jarry <robin@jarry.cc>
32 lines
535 B
Go
32 lines
535 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.sr.ht/~rjarry/aerc/widgets"
|
|
)
|
|
|
|
type Prompt struct{}
|
|
|
|
func init() {
|
|
register(Prompt{})
|
|
}
|
|
|
|
func (Prompt) Aliases() []string {
|
|
return []string{"prompt"}
|
|
}
|
|
|
|
func (Prompt) Complete(aerc *widgets.Aerc, args []string) []string {
|
|
return nil // TODO: add completions
|
|
}
|
|
|
|
func (Prompt) Execute(aerc *widgets.Aerc, args []string) error {
|
|
if len(args) < 3 {
|
|
return fmt.Errorf("Usage: %s <prompt> <cmd>", args[0])
|
|
}
|
|
|
|
prompt := args[1]
|
|
cmd := args[2:]
|
|
aerc.RegisterPrompt(prompt, cmd)
|
|
return nil
|
|
}
|